Advertisement
Guest User

Untitled

a guest
Apr 20th, 2014
45
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. GET http://localhost/App/App/model/app/CheckTreeNode.js?_dc=1396967410158 404 (Not Found) all-classes.js:10841
  2. GET http://localhost/App/App/store/app/UserPreferenceNodes.js?_dc=1396967410159 404 (Not Found) all-classes.js:10841
  3. GET http://localhost/App/app/controller/ViewportAdmin.js?_dc=1396967410177 404 (Not Found) all-classes.js:10841
  4.  
  5. ...
  6.  
  7. Uncaught Error: [Ext.Loader] Failed loading 'App/model/app/CheckTreeNode.js', please verify that the file exists all-classes.js:11259
  8. Uncaught Error: [Ext.Loader] Failed loading 'App/store/app/UserPreferenceNodes.js', please verify that the file exists all-classes.js:11259
  9. Uncaught Error: [Ext.Loader] Failed loading 'app/controller/ViewportAdmin.js', please verify that the file exists
  10.  
  11. extend: 'App.Application',
  12. requires: [
  13. 'App.store.app.UserPreferences',
  14. 'App.view.ViewportAdmin'
  15. ],
  16. autoCreateViewport: false,
  17. launch: function () {
  18.  
  19. Ext.StoreManager.lookup('App.store.app.UserPreferences').on('load', function () {
  20.  
  21. if (window.location.href.indexOf('/App/index.aspx?admin=true') > -1) {
  22. Ext.create('App.view.ViewportAdmin');
  23. }
  24. else if (window.location.href.indexOf('/App/index.aspx') > -1) {
  25. Ext.create('App.view.Viewport');
  26. }
  27. });
  28.  
  29.  
  30. }
  31.  
  32. script.src = url;
  33. (Loader.documentHead || document.getElementsByTagName('head')[0]).appendChild(script);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement