mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-20 21:54:25 -04:00
rjs -> webpack
This commit is contained in:
@@ -1,28 +1,20 @@
|
||||
'use strict';
|
||||
var Backgrid = require('backgrid');
|
||||
|
||||
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));
|
||||
module.exports = Backgrid.Cell.extend({
|
||||
className : 'protocol-cell',
|
||||
render : function(){
|
||||
var protocol = this.model.get('protocol') || 'Unknown';
|
||||
var label = '??';
|
||||
if(protocol) {
|
||||
if(protocol === 'torrent') {
|
||||
label = 'torrent';
|
||||
}
|
||||
|
||||
this.delegateEvents();
|
||||
return this;
|
||||
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;
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user