xbug.js 281 B

12345678910
  1. var xBug = function(config) {
  2. config = config || {};
  3. xBug.superclass.constructor.call(this,config);
  4. };
  5. Ext.extend(xBug,Ext.Component,{
  6. page:{},window:{},grid:{},panel:{},combo:{},config: {},view: {}, stores : {}, extra : {}
  7. });
  8. Ext.reg('xbug',xBug);
  9. xBug = new xBug();