compat.js.uncompressed.js 302 B

1234567891011
  1. define("dojox/mobile/compat", [
  2. "dojo/_base/lang",
  3. "dojo/_base/sniff"
  4. ], function(lang, has){
  5. var dm = lang.getObject("dojox.mobile", true);
  6. if(!has("webkit")){
  7. var s = "dojox/mobile/_compat"; // assign to a variable so as not to be picked up by the build tool
  8. require([s]);
  9. }
  10. return dm;
  11. });