X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..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'); +});