fixed some quote issues.

This commit is contained in:
kay.one 2013-06-22 08:58:16 -07:00
parent 769331d45d
commit ee28926da0
8 changed files with 54 additions and 54 deletions

View File

@ -18,8 +18,8 @@ define(['app', 'Calendar/Collection','fullcalendar'], function () {
right : 'month,basicWeek'
},
buttonText : {
prev: '<i class='icon-arrow-left'></i>',
next: '<i class='icon-arrow-right'></i>'
prev: '<i class="icon-arrow-left"></i>',
next: '<i class="icon-arrow-right"></i>'
},
events : this.getEvents,
eventRender : function (event, element) {

View File

@ -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;

View File

@ -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;

View File

@ -13,16 +13,16 @@ define(['app','backgrid'], function () {
var self = this;
this.$el.html('<i class ='icon-spinner icon-spin' />');
this.$el.html('<i class =\'icon-spinner icon-spin\' />');
this.model.save()
.always(function () {
self.$el.html('<i class ='icon-download-alt' />');
self.$el.html('<i class =\'icon-download-alt\' />');
});
},
render: function () {
this.$el.html('<i class ='icon-download-alt' />');
this.$el.html('<i class =\'icon-download-alt\' />');
return this;
}

View File

@ -9,14 +9,14 @@ define(['app','backgrid'], function () {
var status = this.model.get('status');
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') {
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 {
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;

View File

@ -4,12 +4,7 @@ define(['marionette', 'Mixins/AsModelBoundview'], function (Marionette, AsModelB
var view = Marionette.ItemView.extend({
template : 'Settings/Misc/MiscTemplate',
className: 'form-horizontal',
ui: {
tooltip: '[class^='help-inline'] i'
}
className: 'form-horizontal'
});
return AsModelBoundView.call(view);

View File

@ -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;

View File

@ -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\';'');
});
});