mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-21 14:03:29 -07:00
fixed some quote issues.
This commit is contained in:
parent
769331d45d
commit
ee28926da0
8 changed files with 54 additions and 54 deletions
|
@ -14,7 +14,7 @@ define(['app','backgrid'], function () {
|
|||
|
||||
if (this.column.get('sortable')) {
|
||||
this.$el.addClass('clickable');
|
||||
this.$el.append(' <i class='pull-right'></i>');
|
||||
this.$el.append(' <i class="pull-right"></i>');
|
||||
|
||||
if (this.collection.state) {
|
||||
var sortKey = this.collection.state.sortKey;
|
||||
|
|
|
@ -1,43 +1,48 @@
|
|||
'use strict';
|
||||
|
||||
define(['app','handlebars','Shared/FormatHelpers'], function (App,Handlebars) {
|
||||
Handlebars.registerHelper('partial', function (templateName) {
|
||||
//TODO: We should be able to pass in the context, either an object or a property
|
||||
define(
|
||||
[
|
||||
'app',
|
||||
'handlebars',
|
||||
'Shared/FormatHelpers'
|
||||
], function (App, Handlebars) {
|
||||
Handlebars.registerHelper('partial', function (templateName) {
|
||||
//TODO: We should be able to pass in the context, either an object or a property
|
||||
|
||||
var templateFunction = Marionette.TemplateCache.get(templateName);
|
||||
return new Handlebars.SafeString(templateFunction(this));
|
||||
});
|
||||
var templateFunction = Marionette.TemplateCache.get(templateName);
|
||||
return new Handlebars.SafeString(templateFunction(this));
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('debug', function (optionalValue) {
|
||||
console.log('Current Context');
|
||||
console.log('====================');
|
||||
console.log(this);
|
||||
|
||||
if (optionalValue) {
|
||||
console.log('Value');
|
||||
Handlebars.registerHelper('debug', function (optionalValue) {
|
||||
console.log('Current Context');
|
||||
console.log('====================');
|
||||
console.log(optionalValue);
|
||||
}
|
||||
console.log(this);
|
||||
|
||||
if (optionalValue) {
|
||||
console.log('Value');
|
||||
console.log('====================');
|
||||
console.log(optionalValue);
|
||||
}
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('fileSize', function (size) {
|
||||
return new Handlebars.SafeString(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('date', function (date) {
|
||||
//TODO: show actual date in tooltip
|
||||
if (!date) {
|
||||
return '';
|
||||
}
|
||||
|
||||
var shortDate = Date.create(date).short();
|
||||
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
|
||||
var result = '<span title="' + shortDate + '">' + formattedDate + '</span>';
|
||||
|
||||
return new Handlebars.SafeString(result);
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('defaultImg', function () {
|
||||
return new Handlebars.SafeString('onerror="this.src="/content/images/poster-dark.jpg";"');
|
||||
});
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('fileSize', function (size) {
|
||||
return new Handlebars.SafeString(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('date', function (date) {
|
||||
//TODO: show actual date in tooltip
|
||||
if (!date) {
|
||||
return '';
|
||||
}
|
||||
|
||||
var shortDate = Date.create(date).short();
|
||||
var formattedDate = NzbDrone.Shared.FormatHelpers.DateHelper(date);
|
||||
var result = '<span title='' + shortDate + ''>' + formattedDate + '</span>';
|
||||
|
||||
return new Handlebars.SafeString(result);
|
||||
});
|
||||
|
||||
Handlebars.registerHelper('defaultImg', function () {
|
||||
return new Handlebars.SafeString('onerror='this.src=\'/content/images/poster-dark.jpg\';'');
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue