cleaned up mutators
This commit is contained in:
parent
8841e43c25
commit
28c93aa947
|
@ -5,12 +5,6 @@ define(
|
||||||
'sugar'
|
'sugar'
|
||||||
], function (Backbone) {
|
], function (Backbone) {
|
||||||
return Backbone.Model.extend({
|
return Backbone.Model.extend({
|
||||||
mutators: {
|
|
||||||
freeSpaceString: function () {
|
|
||||||
return this.get('freeSpace').bytes(2) + ' Free';
|
|
||||||
}
|
|
||||||
},
|
|
||||||
|
|
||||||
defaults: {
|
defaults: {
|
||||||
freeSpace: 0
|
freeSpace: 0
|
||||||
}
|
}
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
{{path}}
|
{{path}}
|
||||||
</td>
|
</td>
|
||||||
<td class="span3 x-folder clickable">
|
<td class="span3 x-folder clickable">
|
||||||
<span>{{freeSpaceString}}</span>
|
<span>{{Bytes freeSpace}}</span>
|
||||||
</td>
|
</td>
|
||||||
<td class="span1 nz-row-action">
|
<td class="span1 nz-row-action">
|
||||||
<div class="btn btn-danger icon-minus x-remove">
|
<div class="btn btn-danger icon-minus x-remove">
|
||||||
|
|
|
@ -1,14 +1,9 @@
|
||||||
'use strict';
|
|
||||||
define(['backbone'], function (Backbone) {
|
'use strict';
|
||||||
return Backbone.Model.extend({
|
define(
|
||||||
/* mutators: {
|
[
|
||||||
seasonNumber: function () {
|
'backbone'
|
||||||
return this.get('episode').seasonNumber;
|
], function (Backbone) {
|
||||||
},
|
return Backbone.Model.extend({
|
||||||
|
});
|
||||||
paddedEpisodeNumber: function () {
|
|
||||||
return this.get('episode').episodeNumber.pad(2);
|
|
||||||
}
|
|
||||||
}*/
|
|
||||||
});
|
});
|
||||||
});
|
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'backbone'
|
'backbone'
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
'use strict';
|
'use strict';
|
||||||
define(
|
define(
|
||||||
[
|
[
|
||||||
'backbone',
|
'backbone',
|
||||||
|
@ -52,24 +52,13 @@ define(
|
||||||
isContinuing : function () {
|
isContinuing : function () {
|
||||||
return this.get('status') === 'continuing';
|
return this.get('status') === 'continuing';
|
||||||
},
|
},
|
||||||
shortDate : function () {
|
|
||||||
var date = this.get('nextAiring');
|
|
||||||
|
|
||||||
if (!date) {
|
|
||||||
return '';
|
|
||||||
}
|
|
||||||
|
|
||||||
return Date.create(date).short();
|
|
||||||
},
|
|
||||||
route : function () {
|
route : function () {
|
||||||
return '/series/details/' + this.get('titleSlug');
|
return '/series/details/' + this.get('titleSlug');
|
||||||
//return '/series/details/' + this.get('id');
|
//return '/series/details/' + this.get('id');
|
||||||
},
|
},
|
||||||
|
|
||||||
qualityProfile: function () {
|
qualityProfile: function () {
|
||||||
|
|
||||||
var profile = QualityProfileCollection.get(this.get('qualityProfileId'));
|
var profile = QualityProfileCollection.get(this.get('qualityProfileId'));
|
||||||
|
|
||||||
if (profile) {
|
if (profile) {
|
||||||
return profile.toJSON();
|
return profile.toJSON();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue