source: Dev/trunk/src/client/dojox/storage/_common.js

Last change on this file was 483, checked in by hendrikvanantwerpen, 11 years ago

Added Dojo 1.9.3 release.

File size: 876 bytes
Line 
1dojo.provide("dojox.storage._common");
2dojo.require("dojox.storage.Provider");
3dojo.require("dojox.storage.manager");
4
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*/
10dojo.require("dojox.storage.LocalStorageProvider");
11dojo.require("dojox.storage.GearsStorageProvider");
12//>>excludeStart("offlineProfileExclude", kwArgs.dojoxStorageBuildOption == "offline");
13dojo.require("dojox.storage.WhatWGStorageProvider");
14dojo.require("dojox.storage.FlashStorageProvider");
15//>>excludeEnd("offlineProfileExclude");
16dojo.require("dojox.storage.BehaviorStorageProvider");
17dojo.require("dojox.storage.CookieStorageProvider");
18
19// now that we are loaded and registered tell the storage manager to
20// initialize itself
21dojox.storage.manager.initialize();
Note: See TracBrowser for help on using the repository browser.