mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-04 03:17:48 +03:00
Use Prettier to auto-format javascript, CSS and YAML files so that less manual work is involved and style is consistent across project.
9 lines
356 B
JavaScript
9 lines
356 B
JavaScript
Ext.tree.RenderColumn = Ext.extend(Ext.tree.Column, {
|
|
constructor: function(c) {
|
|
c.tpl = c.tpl || new Ext.XTemplate('{' + c.dataIndex + ':this.format}');
|
|
c.tpl.format = c.renderer;
|
|
c.tpl.col = this;
|
|
Ext.tree.RenderColumn.superclass.constructor.call(this, c);
|
|
},
|
|
});
|
|
Ext.reg('tgrendercolumn', Ext.tree.RenderColumn);
|