Skip to content

Instantly share code, notes, and snippets.

@pschyska
Created February 25, 2012 13:29
Show Gist options
  • Save pschyska/1908495 to your computer and use it in GitHub Desktop.
Save pschyska/1908495 to your computer and use it in GitHub Desktop.
<script type="text/javascript">
//<![CDATA[
Ext.ns("Netzke.classes.Inspector");
Ext.define('Netzke.classes.Inspector.Summary', Netzke.chainApply({
extend: 'Ext.panel.Panel',
alias: 'widget.inspectorsummary',
constructor: function(config) {
Netzke.aliasMethodChain(this, "initComponent", "netzke");
Netzke.classes.Inspector.Summary.superclass.constructor.call(this, config);
}
}, Netzke.componentMixin,
{
initComponent: function() {
console.log('init');
this.callParent();
}
}
, {}));
Netzke.cache.push('inspectorsummary');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment