bootstrap-launch.js 275 B

123456789101112
  1. Ext.require([
  2. "*"
  3. ]);
  4. Ext.onReady(function () {
  5. if (/loadSpecs=true/i.test(location.search)) {
  6. Ext.Loader.loadScripts({
  7. url: ["../bootstrap-specs.js"]
  8. });
  9. } else if(Ext.cmd && Ext.cmd.api) {
  10. Ext.cmd.api.startTests();
  11. }
  12. });