Changeset 13035
- Timestamp:
- 03/11/08 12:22:20 (9 months ago)
- Location:
- dojox/trunk
- Files:
-
- 2 modified
-
off/README (modified) (1 diff)
-
storage/_common.js (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
dojox/trunk/off/README
r13012 r13035 22 22 utorial on using Dojo Offline. 23 23 24 Please note that when building the offline profile, you _must_ pass in the variable offlineProfile=true: 25 26 ./build.sh profile=offline action=release offlineProfile=true 27 24 28 ------------------------------------------------------------------------------- 25 29 Installation instructions -
dojox/trunk/storage/_common.js
r13009 r13035 3 3 dojo.require("dojox.storage.manager"); 4 4 5 if(djConfig.offlineProfile){ 6 dojo.require("dojox.storage.GearsStorageProvider"); 7 }else{ 8 dojo.require("dojox.storage.GearsStorageProvider"); 9 dojo.require("dojox.storage.WhatWGStorageProvider"); 10 dojo.require("dojox.storage.FlashStorageProvider"); 11 } 5 /* 6 Note: if you are doing Dojo Offline builds you _must_ 7 have offlineProfile=true when you run the build script: 8 ./build.sh action=release profile=offline offlineProfile=true 9 */ 10 dojo.require("dojox.storage.GearsStorageProvider"); 11 //>>excludeStart("offlineProfileExclude", kwArgs.offlineProfile == "true"); 12 dojo.require("dojox.storage.WhatWGStorageProvider"); 13 dojo.require("dojox.storage.FlashStorageProvider"); 14 //>>excludeEnd("offlineProfileExclude"); 12 15 13 16 // now that we are loaded and registered tell the storage manager to