web-apps/vendor/touch/src/behavior/Behavior.js
Maxim Kadushkin 741b10515d webapps added
2016-03-10 21:48:53 -03:00

13 lines
243 B
JavaScript

/**
* @private
*/
Ext.define('Ext.behavior.Behavior', {
constructor: function(component) {
this.component = component;
component.on('destroy', 'onComponentDestroy', this);
},
onComponentDestroy: Ext.emptyFn
});