Changeset 4595
- Timestamp:
- 07/02/06 00:49:33 (2 years ago)
- Location:
- trunk
- Files:
-
- 4 modified
-
src/flash.js (modified) (3 diffs)
-
src/storage/browser.js (modified) (1 diff)
-
src/storage/Storage.as (modified) (1 diff)
-
Storage_version6.swf (modified) (previous)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/flash.js
r4526 r4595 683 683 + "&baseRelativePath=" + escape(dojoPath); 684 684 } 685 686 if(swflocEmbed.indexOf("?") == -1){ 687 swflocEmbed += "?baseRelativePath="+escape(dojoPath)+"' "; 688 } 685 689 686 690 objectHTML = … … 695 699 + '<param name="quality" value="high" /> ' 696 700 + '<param name="bgcolor" value="#ffffff" /> ' 697 + '<embed src="' + swflocEmbed + '" '701 + '<embed src="' + swflocEmbed + "' " 698 702 + 'quality="high" ' 699 703 + 'bgcolor="#ffffff" ' … … 705 709 + 'align="middle" ' 706 710 + 'allowScriptAccess="sameDomain" ' 707 + 'type="application/x-shockwave-flash" ' + "&baseRelativePath=" + escape(dojoPath);711 + 'type="application/x-shockwave-flash" ' 708 712 + 'pluginspage="http://www.macromedia.com/go/getflashplayer" />' 709 713 + '</object>'; -
trunk/src/storage/browser.js
r4055 r4595 10 10 Storage provider that uses features in Flash to achieve permanent storage. 11 11 12 @author Alex Russel , alex@dojotoolkit.org12 @author Alex Russell, alex@dojotoolkit.org 13 13 @author Brad Neuberg, bkn3@columbia.edu 14 14 */ -
trunk/src/storage/Storage.as
r4190 r4595 22 22 // access so it is in the cache 23 23 _root.createEmptyMovieClip("_settingsBackground", 1); 24 // getURL("javascript:alert('"+DojoExternalInterface.dojoPath+"');"); 24 25 _root._settingsBackground.loadMovie(DojoExternalInterface.dojoPath + "storage_dialog.swf"); 25 26 }