home.js 354 B

123456789101112
  1. GAL.page.Home = function(config) {
  2. config = config || {};
  3. Ext.applyIf(config,{
  4. components: [{
  5. xtype: 'gal-panel-home'
  6. ,renderTo: 'gal-panel-home-div'
  7. }]
  8. });
  9. GAL.page.Home.superclass.constructor.call(this,config);
  10. };
  11. Ext.extend(GAL.page.Home,MODx.Component);
  12. Ext.reg('gal-page-home',GAL.page.Home);