mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
28 lines
719 B
JavaScript
28 lines
719 B
JavaScript
'use strict';
|
|
|
|
define(['backgrid'], function (Backgrid) {
|
|
return Backgrid.Cell.extend({
|
|
|
|
className : 'protocol-cell',
|
|
|
|
render : function () {
|
|
var protocol = this.model.get('protocol') || 'Unknown';
|
|
|
|
var label = '??';
|
|
|
|
if (protocol) {
|
|
if (protocol === 'torrent') {
|
|
label = 'torrent';
|
|
}
|
|
else if (protocol === 'usenet') {
|
|
label = 'nzb';
|
|
}
|
|
|
|
this.$el.html('<div class="label label-default protocol-{0}" title="{0}">{1}</div>'.format(protocol, label));
|
|
}
|
|
|
|
this.delegateEvents();
|
|
return this;
|
|
}
|
|
});
|
|
}); |