offline-editor-js/lib/edit/OfflineEditNS.js
2014-09-05 16:20:42 -06:00

21 lines
285 B
JavaScript

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