1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

updated jshint to 2.1.3

single quotes
This commit is contained in:
kay.one 2013-06-21 23:24:24 -07:00
parent 3c686808f2
commit 769331d45d
120 changed files with 233 additions and 218 deletions

View File

@ -1,16 +1,16 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JSHintConfiguration" version="1.1.0" use-config-file="false">
<component name="JSHintConfiguration" version="2.1.3" use-config-file="false">
<option bitwise="true" />
<option camelcase="false" />
<option camelcase="true" />
<option curly="true" />
<option eqeqeq="true" />
<option forin="true" />
<option immed="false" />
<option latedef="false" />
<option newcap="false" />
<option immed="true" />
<option latedef="true" />
<option newcap="true" />
<option noarg="true" />
<option noempty="true" />
<option noempty="false" />
<option nonew="true" />
<option plusplus="false" />
<option regexp="false" />
@ -18,6 +18,8 @@
<option unused="false" />
<option strict="true" />
<option trailing="false" />
<option quotmark="single" />
<option maxdepth="3" />
<option asi="false" />
<option boss="false" />
<option debug="false" />
@ -45,7 +47,7 @@
<option validthis="false" />
<option browser="true" />
<option couch="false" />
<option devel="false" />
<option devel="true" />
<option dojo="false" />
<option jquery="true" />
<option mootools="false" />
@ -61,7 +63,7 @@
<option passfail="false" />
<option white="false" />
<option maxerr="50" />
<option predef="NzbDrone, define, Backbone, _, window,Handlebars, console,require,$,Marionette, Backgrid, jQuery, signalR" />
<option predef="NzbDrone, define, Backbone, _, window,Handlebars,require,$,Marionette, Backgrid, jQuery, signalR" />
</component>
</project>

View File

@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="JSLintConfiguration" html="true" json="true">
<option browser="true" />
<option devel="true" />
<option indent="4" />
<option maxerr="50" />
<option plusplus="true" />
<option todo="true" />
<option white="true" />
</component>
</project>

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'marionette',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'app',

View File

@ -28,7 +28,7 @@ define(
initialize: function () {
this.collection = new AddSeriesCollection();
this.on("item:removed", function () {
this.on('item:removed', function () {
this.close();
}, this);
},

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'backbone',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'backbone',
@ -7,7 +7,7 @@ define(
return Backbone.Model.extend({
mutators: {
freeSpaceString: function () {
return this.get('freeSpace').bytes(2) + " Free";
return this.get('freeSpace').bytes(2) + ' Free';
}
},

View File

@ -12,7 +12,7 @@ define(
return Marionette.ItemView.extend({
template: "AddSeries/SearchResultTemplate",
template: 'AddSeries/SearchResultTemplate',
ui: {
qualityProfile: '.x-quality-profile',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'Calendar/UpcomingCollectionView',

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

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Calendar.Collection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
@ -10,4 +10,4 @@ define(['app', 'Series/EpisodeModel'], function () {
return time;
}
});
});
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Calendar.UpcomingCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/calendar',
@ -10,4 +10,4 @@ define(['app', 'Series/EpisodeModel'], function () {
return time;
}
});
});
});

View File

@ -1,12 +1,12 @@
"use strict";
'use strict';
define(['app', 'Shared/FormatHelpers','backgrid'], function () {
NzbDrone.Cells.AirDateCell = Backgrid.Cell.extend({
className: "air-date-cell",
className: 'air-date-cell',
render: function () {
this.$el.empty();
var airDate = this.model.get(this.column.get("name"));
var airDate = this.model.get(this.column.get('name'));
this.$el.html(NzbDrone.Shared.FormatHelpers.DateHelper(airDate));
return this;

View File

@ -1,9 +1,9 @@
"use strict";
'use strict';
define(['app', 'Cells/NzbDroneCell'], function () {
NzbDrone.Cells.EpisodeNumberCell = NzbDrone.Cells.NzbDroneCell.extend({
className: "episode-number-cell",
className: 'episode-number-cell',
render: function () {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','backgrid' ], function () {
NzbDrone.Cells.EpisodeStatusCell = Backgrid.Cell.extend({
@ -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

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Cells/NzbDroneCell'], function () {
NzbDrone.Cells.EpisodeTitleCell = NzbDrone.Cells.NzbDroneCell.extend({

View File

@ -1,12 +1,12 @@
"use strict";
'use strict';
define(['app', 'Shared/FormatHelpers','backgrid'], function () {
NzbDrone.Cells.FileSizeCell = Backgrid.Cell.extend({
className: "file-size-cell",
className: 'file-size-cell',
render: function () {
var size = this.model.get(this.column.get("name"));
var size = this.model.get(this.column.get('name'));
this.$el.html(NzbDrone.Shared.FormatHelpers.FileSizeHelper(size));
this.delegateEvents();
return this;

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
NzbDrone.Cells.IndexerCell = Backgrid.Cell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
NzbDrone.Cells.NzbDroneCell = Backgrid.Cell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Cells/TemplatedCell'], function () {
NzbDrone.Cells.QualityCell = NzbDrone.Cells.TemplatedCell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','Cells/NzbDroneCell'], function () {
NzbDrone.Cells.RelativeDateCell = NzbDrone.Cells.NzbDroneCell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Cells/TemplatedCell'], function () {
NzbDrone.Cells.SeriesTitleCell = NzbDrone.Cells.TemplatedCell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','Cells/NzbDroneCell'], function () {
NzbDrone.Cells.TemplatedCell = NzbDrone.Cells.NzbDroneCell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Episode/Layout'], function () {
NzbDrone.Cells.ToggleCell = Backgrid.Cell.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Commands.Execute = function (name, properties) {
@ -14,4 +14,4 @@ define(['app'], function () {
data: JSON.stringify(data)
});
};
});
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'app'

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define({
ApiRoot : '/api'
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'app',
@ -102,13 +102,13 @@ define(
return;
}
var cookies = document.cookie.split(";");
var cookies = document.cookie.split(';');
for (var i = 0; i < cookies.length; i++) {
var cookie = cookies[i];
var eqPos = cookie.indexOf("=");
var eqPos = cookie.indexOf('=');
var name = eqPos > -1 ? cookie.substr(0, eqPos) :cookie;
document.cookie = name + "=;expires=Thu, 01 Jan 1970 00:00:00 GMT";
document.cookie = name + '=;expires=Thu, 01 Jan 1970 00:00:00 GMT';
}
}
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Shared/SpinnerView', 'Episode/Summary/View', 'Episode/Search/Layout', 'Release/Collection'], function () {
NzbDrone.Episode.Layout = Backbone.Marionette.Layout.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'Cells/FileSizeCell',

View File

@ -1,8 +1,8 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Episode.Summary.View = Backbone.Marionette.ItemView.extend({
template: 'Episode/Summary/ViewTemplate'
});
});
});

View File

@ -1,7 +1,7 @@
'use strict';
define(['app', 'handlebars'], function (App,Handlebars) {
Handlebars.registerHelper('formBuilder', function () {
var ret = "";
var ret = '';
_.each(this.fields, function (field) {
ret += NzbDrone.Form.FieldBuilder(field);
});

View File

@ -1,10 +1,10 @@
"use strict";
'use strict';
define(
[
'sugar'
], {
register: function (handlebars) {
handlebars.registerHelper("ShortDate", function (input) {
handlebars.registerHelper('ShortDate', function (input) {
if (!input) {
return '';
}

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['templates'], function (Templates) {
return function () {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'History/Model', 'backbone.pageable'], function (App, HistoryModel, PageableCollection) {
NzbDrone.History.Collection = PageableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/history',
@ -6,7 +6,7 @@ define(['app', 'History/Model', 'backbone.pageable'], function (App, HistoryMode
state: {
pageSize: 15,
sortKey: "date",
sortKey: 'date',
order: 1
},
@ -14,11 +14,11 @@ define(['app', 'History/Model', 'backbone.pageable'], function (App, HistoryMode
totalPages: null,
totalRecords: null,
pageSize: 'pageSize',
sortKey: "sortKey",
order: "sortDir",
sortKey: 'sortKey',
order: 'sortDir',
directions: {
"-1": "asc",
"1": "desc"
'-1': 'asc',
'1': 'desc'
}
},

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Cells/NzbDroneCell' ], function () {
NzbDrone.History.EventTypeCell = NzbDrone.Cells.NzbDroneCell.extend({
@ -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

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'History/Collection',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','Series/SeriesModel', 'Series/EpisodeModel'], function () {
NzbDrone.History.Model = Backbone.Model.extend({
mutators: {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
(function () {
/* var model = new NzbDrone.Shared.NotificationModel();
@ -29,7 +29,7 @@
var a = document.createElement('a');
a.href = url;
var messageText = a.pathname.split('/').pop() + ' : ' + line + "</br>" + msg;
var messageText = a.pathname.split('/').pop() + ' : ' + line + '</br>' + msg;
var message = {
message : messageText,
@ -41,7 +41,7 @@
window.Messenger().post(message);
} catch (error) {
console.log("An error occurred while reporting error. " + error);
console.log('An error occurred while reporting error. ' + error);
console.log(msg);
window.alert('Couldn\'t report JS error. ' + msg);
}
@ -71,7 +71,7 @@
return false;
//message.message = 'NzbDrone Server Not Reachable. make sure NzbDrone is running.';
} else {
message.message = "[{0}] {1} : {2}".format(ajaxOptions.type, xmlHttpRequest.statusText, ajaxOptions.url);
message.message = '[{0}] {1} : {2}'.format(ajaxOptions.type, xmlHttpRequest.statusText, ajaxOptions.url);
}
window.Messenger().post(message);

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
String.prototype.format = function () {
var args = arguments;
return this.replace(/{(\d+)}/g, function (match, number) {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Logs/Model', 'backbone.pageable'], function (app, SeriesModel, PagableCollection) {
NzbDrone.Logs.Collection = PagableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/log',
@ -6,7 +6,7 @@ define(['app', 'Logs/Model', 'backbone.pageable'], function (app, SeriesModel, P
state: {
pageSize: 50,
sortKey : "time",
sortKey : 'time',
order : 1
},
@ -14,11 +14,11 @@ define(['app', 'Logs/Model', 'backbone.pageable'], function (app, SeriesModel, P
totalPages : null,
totalRecords: null,
pageSize : 'pageSize',
sortKey : "sortKey",
order : "sortDir",
sortKey : 'sortKey',
order : 'sortDir',
directions : {
"-1": "asc",
"1" : "desc"
'-1': 'asc',
'1' : 'desc'
}
},

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'Logs/Collection',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function (app) {
NzbDrone.Logs.Model = Backbone.Model.extend({
/* mutators: {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
var MainMenuView = Backbone.Marionette.ItemView.extend({
events: {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/EpisodeModel', 'backbone.pageable'], function (app, EpisodeModel, PagableCollection) {
NzbDrone.Missing.Collection = PagableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/missing',
@ -6,7 +6,7 @@ define(['app', 'Series/EpisodeModel', 'backbone.pageable'], function (app, Episo
state: {
pageSize: 15,
sortKey : "airDate",
sortKey : 'airDate',
order : 1
},
@ -14,11 +14,11 @@ define(['app', 'Series/EpisodeModel', 'backbone.pageable'], function (app, Episo
totalPages : null,
totalRecords: null,
pageSize : 'pageSize',
sortKey : "sortKey",
order : "sortDir",
sortKey : 'sortKey',
order : 'sortDir',
directions : {
"-1": "asc",
"1" : "desc"
'-1': 'asc',
'1' : 'desc'
}
},

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'backgrid'

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
@ -7,8 +7,8 @@ define(['app'], function () {
source : function (filter, callback) {
$.ajax({
url : NzbDrone.Constants.ApiRoot + resource,
dataType: "json",
type : "GET",
dataType: 'json',
type : 'GET',
data : { query: filter },
success : function (data) {
callback(data);

View File

@ -1,5 +1,5 @@
//try to add ajax data as query string to DELETE calls.
"use strict";
'use strict';
define(function () {
return function () {

View File

@ -1,5 +1,5 @@
/*
"use strict";
'use strict';
(function () {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'signalR'], function () {
_.extend(Backbone.Collection.prototype, {BindSignalR: function (options) {

View File

@ -19,7 +19,7 @@
return new Date(obj.getTime());
}
if (_.isRegExp(obj)) {
return new RegExp(obj.source, obj.toString().replace(/.*\//, ""));
return new RegExp(obj.source, obj.toString().replace(/.*\//, ''));
}
isArr = _.isArray(obj || _.isArguments(obj));
func = function(memo, value, key) {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Quality/QualitySizeModel'], function () {
NzbDrone.Quality.QualitySizeCollection = Backbone.Collection.extend({
model: NzbDrone.Quality.QualitySizeModel,

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Quality.QualitySizeModel = Backbone.Model.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Quality/QualityProfileModel'], function () {
var qualityProfileCollection = Backbone.Collection.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'backbone.deepmodel'], function (App, DeepModel) {
NzbDrone.Quality.QualityProfileModel = DeepModel.DeepModel.extend({

View File

@ -1,12 +1,12 @@
"use strict";
'use strict';
require(['app', 'backgrid'], function () {
NzbDrone.Release.ApprovalStatusCell = Backgrid.Cell.extend({
className: "approval-status-cell",
className: 'approval-status-cell',
render: function () {
var rejections = this.model.get(this.column.get("name"));
var rejections = this.model.get(this.column.get('name'));
var result = '';

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Release/Model', 'backbone.pageable'], function (app, SeriesModel, PagableCollection) {
NzbDrone.Release.Collection = PagableCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/release',

View File

@ -1,9 +1,9 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
NzbDrone.Release.DownloadReportCell = Backgrid.Cell.extend({
className: "download-report-cell",
className: 'download-report-cell',
events: {
'click': '_onClick'
@ -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

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'Release/Collection',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Release.Model = Backbone.Model.extend({
/* mutators: {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
require(
[
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/Details/SeasonLayout', 'Series/SeasonCollection', 'Series/EpisodeCollection'], function () {
NzbDrone.Series.Details.SeasonCollectionView = Backbone.Marionette.CollectionView.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/Details/SeasonCollectionView', 'Shared/LoadingView','backstrech'], function () {
NzbDrone.Series.Details.SeriesDetailsLayout = Backbone.Marionette.Layout.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/EpisodeModel'], function () {
NzbDrone.Series.EpisodeCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/episodes',
@ -6,7 +6,7 @@ define(['app', 'Series/EpisodeModel'], function () {
bySeason: function (season) {
var filtered = this.filter(function (episode) {
return episode.get("seasonNumber") === season;
return episode.get('seasonNumber') === season;
});
return new NzbDrone.Series.EpisodeCollection(filtered);

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/SeriesModel'], function () {
NzbDrone.Series.EpisodeModel = Backbone.Model.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'Series/Index/List/CollectionView',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
NzbDrone.Series.Index.Table.Row = Backgrid.Row.extend({
events: {

View File

@ -1,7 +1,7 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
Backgrid.SeriesStatusCell = Backgrid.Cell.extend({
className: "series-status-cell",
className: 'series-status-cell',
render: function () {
this.$el.empty();
@ -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

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/SeasonModel', 'backbone.pageable'], function (App, SeasonModel, PageAbleCollection) {
NzbDrone.Series.SeasonCollection = PageAbleCollection.extend({
url : NzbDrone.Constants.ApiRoot + '/season',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Series.SeasonModel = Backbone.Model.extend({
@ -7,10 +7,10 @@ define(['app'], function () {
var seasonNumber = this.get('seasonNumber');
if (seasonNumber === 0) {
return "Specials";
return 'Specials';
}
return "Season " + seasonNumber;
return 'Season ' + seasonNumber;
}
},

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Series/SeriesModel'], function () {
NzbDrone.Series.SeriesCollection = Backbone.Collection.extend({
url : NzbDrone.Constants.ApiRoot + '/series',
@ -9,7 +9,7 @@ define(['app', 'Series/SeriesModel'], function () {
},
state: {
sortKey: "title",
sortKey: 'title',
order: -1
}
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfiles) {
NzbDrone.Series.SeriesModel = Backbone.Model.extend({
@ -40,10 +40,10 @@ define(['app', 'Quality/QualityProfileCollection'], function (app, qualityProfil
return undefined;
},
traktUrl : function () {
return "http://trakt.tv/show/" + this.get('titleSlug');
return 'http://trakt.tv/show/' + this.get('titleSlug');
},
imdbUrl : function () {
return "http://imdb.com/title/" + this.get('imdbId');
return 'http://imdb.com/title/' + this.get('imdbId');
},
isContinuing : function () {
return this.get('status') === 'continuing';

View File

@ -1,5 +1,5 @@
var statusText = $.ajax({
type : "GET",
type : 'GET',
url : '/api/system/status',
async: false
}).responseText;

View File

@ -37,32 +37,32 @@ define([
refreshUIVisibility: function (clientId) {
if (!clientId) {
clientId = "sabnzbd";
clientId = 'sabnzbd';
}
switch (clientId.toString()) {
case "sabnzbd":
case 'sabnzbd':
this.ui.sabConfig.show();
this.ui.blackholeConfig.hide();
this.ui.pneumaticConfig.hide();
this.ui.nzbGetConfig.hide();
break;
case "blackhole":
case 'blackhole':
this.ui.sabConfig.hide();
this.ui.blackholeConfig.show();
this.ui.pneumaticConfig.hide();
this.ui.nzbGetConfig.hide();
break;
case "pneumatic":
case 'pneumatic':
this.ui.sabConfig.hide();
this.ui.blackholeConfig.hide();
this.ui.pneumaticConfig.show();
this.ui.nzbGetConfig.hide();
break;
case "nzbget":
case 'nzbget':
this.ui.sabConfig.hide();
this.ui.blackholeConfig.hide();
this.ui.pneumaticConfig.hide();
@ -70,7 +70,7 @@ define([
break;
default :
throw "unknown download client id" + clientId;
throw 'unknown download client id' + clientId;
}
}
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'backbone', 'Mixins/AsChangeTrackingModel'], function (App, Backbone, AsChangeTrackingModel) {
var model = Backbone.Model.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Settings/Indexers/Model'], function (App, IndexerModel) {
return Backbone.Collection.extend({
url : App.Constants.ApiRoot + '/indexer',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['marionette', 'Mixins/AsModelBoundView'], function (Marionette, AsModelBoundView) {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'Settings/SettingsModelBase'], function (ModelBase) {
return ModelBase.extend({

View File

@ -7,7 +7,7 @@ define(['marionette', 'Mixins/AsModelBoundview'], function (Marionette, AsModelB
className: 'form-horizontal',
ui: {
tooltip: '[class^="help-inline"] i'
tooltip: '[class^='help-inline'] i'
}
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app',
'Settings/SettingsModelBase'], function (App, ModelBase) {
return ModelBase.extend({

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'marionette',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'Settings/Notifications/Model'], function (App, NotificationModel) {
return Backbone.Collection.extend({
url : App.Constants.ApiRoot + '/notification',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app', 'backbone.deepmodel'], function (App, DeepModel) {
return DeepModel.DeepModel.extend({
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'marionette',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'marionette',

View File

@ -1,9 +1,9 @@
"use strict";
'use strict';
define(['app',
'Settings/SettingsModelBase'], function (App, SettingsModelBase) {
return SettingsModelBase.extend({
url : App.Constants.ApiRoot + '/settings',
successMessage: 'Settings saved',
errorMessage : "Failed to save settings"
errorMessage : 'Failed to save settings'
});
});

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app',
'backbone.deepmodel',
'Mixins/AsChangeTrackingModel',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(
[
'marionette',

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app'], function () {
NzbDrone.Shared.FormatHelpers.FileSizeHelper = function (sourceSize) {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define(['app','backgrid'], function () {
@ -10,11 +10,11 @@ define(['app','backgrid'], function () {
render: function () {
this.$el.empty();
this.$el.append(this.column.get("label"));
this.$el.append(this.column.get('label'));
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;
@ -47,11 +47,11 @@ define(['app','backgrid'], function () {
onClick: function (e) {
e.preventDefault();
var columnName = this.column.get("name");
var columnName = this.column.get('name');
if (this.column.get("sortable")) {
if (this.direction() === "ascending") {
this.sort(columnName, "descending", function (left, right) {
if (this.column.get('sortable')) {
if (this.direction() === 'ascending') {
this.sort(columnName, 'descending', function (left, right) {
var leftVal = left.get(columnName);
var rightVal = right.get(columnName);
if (leftVal === rightVal) {
@ -64,7 +64,7 @@ define(['app','backgrid'], function () {
});
}
else {
this.sort(columnName, "ascending", function (left, right) {
this.sort(columnName, 'ascending', function (left, right) {
var leftVal = left.get(columnName);
var rightVal = right.get(columnName);
if (leftVal === rightVal) {

View File

@ -1,4 +1,4 @@
"use strict";
'use strict';
define([
'app',
'backgrid',
@ -10,7 +10,7 @@ define([
template: 'Shared/Grid/PagerTemplate',
events: {
"click .pager-btn": "changePage"
'click .pager-btn': 'changePage'
},
windowSize: 1,
@ -77,12 +77,12 @@ define([
var windowStart = Math.floor(currentPage / this.windowSize) * this.windowSize;
var windowEnd = Math.min(lastPage + 1, windowStart + this.windowSize);
if (collection.mode !== "infinite") {
if (collection.mode !== 'infinite') {
for (var i = windowStart; i < windowEnd; i++) {
handles.push({
label : i + 1,
title : "No. " + (i + 1),
className : currentPage === i ? "active" :undefined,
title : 'No. ' + (i + 1),
className : currentPage === i ? 'active' :undefined,
pageNumber: i + 1
});
}
@ -94,7 +94,7 @@ define([
if (ffLabels.prev) {
handles.unshift({
label : ffLabels.prev,
className: collection.hasPrevious() ? void 0 :"disabled",
className: collection.hasPrevious() ? void 0 :'disabled',
action : 'prev'
});
}
@ -102,7 +102,7 @@ define([
if (ffLabels.first) {
handles.unshift({
label : ffLabels.first,
className: collection.hasPrevious() ? void 0 :"disabled",
className: collection.hasPrevious() ? void 0 :'disabled',
action : 'first'
});
}
@ -110,7 +110,7 @@ define([
if (ffLabels.next) {
handles.push({
label : ffLabels.next,
className: collection.hasNext() ? void 0 :"disabled",
className: collection.hasNext() ? void 0 :'disabled',
action : 'next'
});
}
@ -118,7 +118,7 @@ define([
if (ffLabels.last) {
handles.push({
label : ffLabels.last,
className: collection.hasNext() ? void 0 :"disabled",
className: collection.hasNext() ? void 0 :'disabled',
action : 'last'
});
}

Some files were not shown because too many files have changed in this diff Show More