more quote identeiifers fixessss
[Pman.Core] / widgets / Document.js
1 //<script type="text/javascript">
2
3 /**
4  * 
5  *  Generic Page handler - implement this to start your app..
6  * 
7  * 
8  * 
9  * eg.
10  *  MyProject = new Roo.Document({
11         events : {
12             'load' : true // your events..
13         },
14         listeners : {
15             'ready' : function() {
16                 // fired on Ext.onReady()
17             }
18         }
19  * 
20  */
21 Roo.Document = function(cfg) {
22      
23     this.addEvents({ 
24         'ready' : true
25     });
26     Roo.util.Observable.call(this,cfg);
27     var _this = this;
28     Roo.onReady(function() {
29         _this.fireEvent('ready');
30     },null,false);
31     
32 }
33 Roo.extend(Roo.Document, Roo.util.Observable, {
34     
35 });