mirror of
https://github.com/Radarr/Radarr.git
synced 2024-11-09 12:32:31 +01:00
fixed some quote issues.
This commit is contained in:
parent
769331d45d
commit
ee28926da0
@ -18,8 +18,8 @@ define(['app', 'Calendar/Collection','fullcalendar'], function () {
|
|||||||
right : 'month,basicWeek'
|
right : 'month,basicWeek'
|
||||||
},
|
},
|
||||||
buttonText : {
|
buttonText : {
|
||||||
prev: '<i class='icon-arrow-left'></i>',
|
prev: '<i class="icon-arrow-left"></i>',
|
||||||
next: '<i class='icon-arrow-right'></i>'
|
next: '<i class="icon-arrow-right"></i>'
|
||||||
},
|
},
|
||||||
events : this.getEvents,
|
events : this.getEvents,
|
||||||
eventRender : function (event, element) {
|
eventRender : function (event, element) {
|
||||||
|
@ -25,7 +25,7 @@ define(['app','backgrid' ], function () {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$el.html('<i class='{0}'/>'.format(icon));
|
this.$el.html('<i class="{0}"/>'.format(icon));
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
@ -32,7 +32,7 @@ define(['app', 'Cells/NzbDroneCell' ], function () {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
this.$el.html('<i class='{0}' title='{1}'/>'.format(icon, toolTip));
|
this.$el.html('<i class="{0}" title="{1}"/>'.format(icon, toolTip));
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
@ -13,16 +13,16 @@ define(['app','backgrid'], function () {
|
|||||||
|
|
||||||
var self = this;
|
var self = this;
|
||||||
|
|
||||||
this.$el.html('<i class ='icon-spinner icon-spin' />');
|
this.$el.html('<i class =\'icon-spinner icon-spin\' />');
|
||||||
this.model.save()
|
this.model.save()
|
||||||
.always(function () {
|
.always(function () {
|
||||||
self.$el.html('<i class ='icon-download-alt' />');
|
self.$el.html('<i class =\'icon-download-alt\' />');
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
||||||
render: function () {
|
render: function () {
|
||||||
|
|
||||||
this.$el.html('<i class ='icon-download-alt' />');
|
this.$el.html('<i class =\'icon-download-alt\' />');
|
||||||
return this;
|
return this;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -9,14 +9,14 @@ define(['app','backgrid'], function () {
|
|||||||
var status = this.model.get('status');
|
var status = this.model.get('status');
|
||||||
|
|
||||||
if (!monitored) {
|
if (!monitored) {
|
||||||
this.$el.html('<i class='icon-pause grid-icon' title='Not Monitored'></i>');
|
this.$el.html('<i class="icon-pause grid-icon" title="Not Monitored"></i>');
|
||||||
}
|
}
|
||||||
else if (status === 'continuing') {
|
else if (status === 'continuing') {
|
||||||
this.$el.html('<i class='icon-play grid-icon' title='Continuing'></i>');
|
this.$el.html('<i class="icon-play grid-icon" title="Continuing"></i>');
|
||||||
}
|
}
|
||||||
|
|
||||||
else {
|
else {
|
||||||
this.$el.html('<i class='icon-stop grid-icon' title='Ended'></i>');
|
this.$el.html('<i class="icon-stop grid-icon" title="Ended"></i>');
|
||||||
}
|
}
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
|
@ -4,12 +4,7 @@ define(['marionette', 'Mixins/AsModelBoundview'], function (Marionette, AsModelB
|
|||||||
|
|
||||||
var view = Marionette.ItemView.extend({
|
var view = Marionette.ItemView.extend({
|
||||||
template : 'Settings/Misc/MiscTemplate',
|
template : 'Settings/Misc/MiscTemplate',
|
||||||
className: 'form-horizontal',
|
className: 'form-horizontal'
|
||||||
|
|
||||||
ui: {
|
|
||||||
tooltip: '[class^='help-inline'] i'
|
|
||||||
}
|
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
||||||
return AsModelBoundView.call(view);
|
return AsModelBoundView.call(view);
|
||||||
|
@ -14,7 +14,7 @@ define(['app','backgrid'], function () {
|
|||||||
|
|
||||||
if (this.column.get('sortable')) {
|
if (this.column.get('sortable')) {
|
||||||
this.$el.addClass('clickable');
|
this.$el.addClass('clickable');
|
||||||
this.$el.append(' <i class='pull-right'></i>');
|
this.$el.append(' <i class="pull-right"></i>');
|
||||||
|
|
||||||
if (this.collection.state) {
|
if (this.collection.state) {
|
||||||
var sortKey = this.collection.state.sortKey;
|
var sortKey = this.collection.state.sortKey;
|
||||||
|
@ -1,6 +1,11 @@
|
|||||||
'use strict';
|
'use strict';
|
||||||
|
|
||||||
define(['app','handlebars','Shared/FormatHelpers'], function (App,Handlebars) {
|
define(
|
||||||
|
[
|
||||||
|
'app',
|
||||||
|
'handlebars',
|
||||||
|
'Shared/FormatHelpers'
|
||||||
|
], function (App, Handlebars) {
|
||||||
Handlebars.registerHelper('partial', function (templateName) {
|
Handlebars.registerHelper('partial', function (templateName) {
|
||||||
//TODO: We should be able to pass in the context, either an object or a property
|
//TODO: We should be able to pass in the context, either an object or a property
|
||||||
|
|
||||||
@ -32,12 +37,12 @@ define(['app','handlebars','Shared/FormatHelpers'], function (App,Handlebars) {
|
|||||||
|
|
||||||
var shortDate = Date.create(date).short();
|
var shortDate = Date.create(date).short();
|
||||||
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
|
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
|
||||||
var result = '<span title='' + shortDate + ''>' + formattedDate + '</span>';
|
var result = '<span title="' + shortDate + '">' + formattedDate + '</span>';
|
||||||
|
|
||||||
return new Handlebars.SafeString(result);
|
return new Handlebars.SafeString(result);
|
||||||
});
|
});
|
||||||
|
|
||||||
Handlebars.registerHelper('defaultImg', function () {
|
Handlebars.registerHelper('defaultImg', function () {
|
||||||
return new Handlebars.SafeString('onerror='this.src=\'/content/images/poster-dark.jpg\';'');
|
return new Handlebars.SafeString('onerror="this.src="/content/images/poster-dark.jpg";"');
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user