add offlineTileEnabler module

This commit is contained in:
Andy Gup 2014-06-06 14:37:09 -06:00
parent c5392c0128
commit a9ad2dc888

View File

@ -137,7 +137,8 @@
paths: {
edit: locationPath + "/../lib/edit",
vendor: locationPath + "/../vendor",
utils: locationPath + "/../utils"
utils: locationPath + "/../utils",
tiles: locationPath + "/../lib/tiles"
}
}
</script>
@ -168,18 +169,19 @@ require([
"esri/Color",
"esri/symbols/SimpleMarkerSymbol",
"esri/renderers/SimpleRenderer",
"esri/dijit/AttributeInspector",
"edit/offlineFeaturesManager",
"tiles/offlineTilesEnabler",
"edit/editsStore",
"utils/appCacheManager",
"esri/dijit/AttributeInspector",
"dojo/dom-construct",
"dojo/on",
"dojo/dom",
"dijit/form/Button",
"dijit/form/SimpleTextarea",
"dojo/domReady!"],
function(Map,Query,FeatureLayer,Color,SimpleMarkerSymbol,SimpleRenderer,
OfflineFeaturesManager,editsStore,AppCacheManager,AttributeInspector,domConstruct,on,dom,Button,SimpleTextArea) {
function(Map,Query,FeatureLayer,Color,SimpleMarkerSymbol,SimpleRenderer,AttributeInspector,
OfflineFeaturesManager,offlineTilesEnabler,editsStore,AppCacheManager,domConstruct,on,dom,Button,SimpleTextArea) {
var textTimer;
var appCacheManager;