roojs-core.js
[roojs1] / Roo / Document.js
index 2bd10f7..c1122ec 100644 (file)
  * This is a convience class to wrap up the main document loading code.. , rather than adding Roo.onReady(......)
  * 
  * @param {Object} config the methods and properties of the 'base' class for the application.
- * 
- */
-/**
  * 
  *  Generic Page handler - implement this to start your app..
  * 
- * 
- * 
  * eg.
  *  MyProject = new Roo.Document({
         events : {
@@ -27,7 +22,7 @@
         },
         listeners : {
             'ready' : function() {
-                // fired on Ext.onReady()
+                // fired on Roo.onReady()
             }
         }
  * 
@@ -38,10 +33,14 @@ Roo.Document = function(cfg) {
         'ready' : true
     });
     Roo.util.Observable.call(this,cfg);
+    
     var _this = this;
+    
     Roo.onReady(function() {
         _this.fireEvent('ready');
     },null,false);
     
+    
 }
+
 Roo.extend(Roo.Document, Roo.util.Observable, {});
\ No newline at end of file