mirror of
https://github.com/Esri/offline-editor-js.git
synced 2025-12-15 15:20:05 +00:00
13 lines
204 B
JavaScript
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: {}
|
|
};
|
|
} |