offline-editor-js/lib/edit/OfflineEditNS.js
2014-09-08 18:42:34 -06:00

17 lines
202 B
JavaScript

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