mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
18 lines
245 B
JavaScript
18 lines
245 B
JavaScript
/**
|
|
* Creates a namespace for the non-AMD libraries in this directory
|
|
*/
|
|
|
|
|
|
if(typeof O != "undefined"){
|
|
O.esri.TPK = {};
|
|
}
|
|
else{
|
|
O = {}; // jshint ignore:line
|
|
O.esri = {
|
|
TPK: {},
|
|
Tiles: {}
|
|
};
|
|
}
|
|
|
|
//"use strict";
|