Upgrade to ExtJS 4.0.2 - Released 06/09/2011
[extjs.git] / docs / app.js
diff --git a/docs/app.js b/docs/app.js
new file mode 100644 (file)
index 0000000..575aa54
--- /dev/null
@@ -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');
+});