parent
741279b596
commit
d4fd731b34
@ -0,0 +1,28 @@
|
|||||||
|
'use strict';
|
||||||
|
|
||||||
|
define(
|
||||||
|
[
|
||||||
|
'backgrid'
|
||||||
|
], function (Backgrid) {
|
||||||
|
return Backgrid.Cell.extend({
|
||||||
|
|
||||||
|
className: 'disk-space-path-cell',
|
||||||
|
|
||||||
|
render: function () {
|
||||||
|
this.$el.empty();
|
||||||
|
|
||||||
|
var path = this.model.get('path');
|
||||||
|
var label = this.model.get('label');
|
||||||
|
|
||||||
|
var contents = path;
|
||||||
|
|
||||||
|
if (label) {
|
||||||
|
contents += ' ({0})'.format(label);
|
||||||
|
}
|
||||||
|
|
||||||
|
this.$el.html(contents);
|
||||||
|
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
});
|
Loading…
Reference in new issue