Upgrade to ExtJS 4.0.7 - Released 10/19/2011
[extjs.git] / docs / app / Application.js
diff --git a/docs/app/Application.js b/docs/app/Application.js
deleted file mode 100644 (file)
index d1a60e4..0000000
+++ /dev/null
@@ -1,35 +0,0 @@
-/**
- * Main application definition for Docs app.
- *
- * We define our own Application class because this way we can also
- * easily define the dependencies.
- */
-Ext.define('Docs.Application', {
-    extend: 'Ext.app.Application',
-    name: 'Docs',
-
-    requires: [
-        'Docs.Favorites',
-        'Docs.History',
-        'Docs.Settings'
-    ],
-
-    controllers: [
-        'Classes',
-        'Search'
-    ],
-
-    autoCreateViewport: true,
-
-    launch: function() {
-        Docs.App = this;
-        Docs.Favorites.init();
-        Docs.History.init();
-        Docs.Settings.init();
-
-        // When google analytics event tracking script present on page
-        if (Docs.initEventTracking) {
-            Docs.initEventTracking();
-        }
-    }
-});