extjs-gpl
Version:
GPL licensed version of Sencha Ext JS
20 lines (17 loc) • 421 B
JavaScript
/**
*
*/
Ext.define('Ext.util.SizeMonitor', {
requires: [
'Ext.util.sizemonitor.Scroll',
'Ext.util.sizemonitor.OverflowChange'
],
constructor: function(config) {
var namespace = Ext.util.sizemonitor;
if (Ext.browser.is.Firefox) {
return new namespace.OverflowChange(config);
} else {
return new namespace.Scroll(config);
}
}
});