X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..6746dc89c47ed01b165cc1152533605f97eb8e8d:/docs/app.js diff --git a/docs/app.js b/docs/app.js new file mode 100644 index 00000000..575aa54a --- /dev/null +++ b/docs/app.js @@ -0,0 +1,15 @@ +Ext.Loader.setConfig({ + enabled: true, + paths: { + 'Docs': 'app' + } +}); + +// The following is exactly what Ext.application() function does, but +// we use our own Application class that extends Ext.app.Application + +Ext.require('Docs.Application'); + +Ext.onReady(function() { + Ext.create('Docs.Application'); +});