Moves the extjs framework into subdir that will be ignored by github's Linguist library so that Deluge is detected correctly as Python.
18 lines
484 B
JavaScript
18 lines
484 B
JavaScript
/*!
|
|
* Ext JS Library 3.4.0
|
|
* Copyright(c) 2006-2011 Sencha Inc.
|
|
* licensing@sencha.com
|
|
* http://www.sencha.com/license
|
|
*/
|
|
/**
|
|
* @class Ext.ux.tree.TreeGridLoader
|
|
* @extends Ext.tree.TreeLoader
|
|
*/
|
|
Ext.ux.tree.TreeGridLoader = Ext.extend(Ext.tree.TreeLoader, {
|
|
createNode : function(attr) {
|
|
if (!attr.uiProvider) {
|
|
attr.uiProvider = Ext.ux.tree.TreeGridNodeUI;
|
|
}
|
|
return Ext.tree.TreeLoader.prototype.createNode.call(this, attr);
|
|
}
|
|
}); |