offline-editor-js/lib/edit/OfflineEditNS.js
2015-04-09 17:05:22 -06:00

13 lines
204 B
JavaScript

/**
* Creates a namespace for the non-AMD libraries in this directory
*/
/*jshint -W020 */
if(typeof O != "undefined"){
O.esri.Edit = {};
}
else{
O = {};
O.esri = {
Edit: {}
};
}