mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
38 lines
897 B
JavaScript
38 lines
897 B
JavaScript
'use strict';
|
|
|
|
var oldItemViewRender = Marionette.ItemView.prototype.render;
|
|
var oldItemCollectionViewRender = Marionette.CollectionView.prototype.render;
|
|
|
|
|
|
Marionette.View.prototype.viewName = function () {
|
|
if (this.template) {
|
|
var regex = new RegExp('\/', 'g');
|
|
|
|
return this.template
|
|
.toLocaleLowerCase()
|
|
.replace('template','')
|
|
.replace(regex, '-');
|
|
}
|
|
|
|
return undefined;
|
|
};
|
|
|
|
Marionette.ItemView.prototype.render = function () {
|
|
|
|
if (this.model) {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
}
|
|
|
|
this.$el.addClass('iv-' + this.viewName());
|
|
|
|
return oldItemViewRender.apply(this, arguments);
|
|
};
|
|
|
|
Marionette.CollectionView.prototype.render = function () {
|
|
|
|
if (this.model) {
|
|
NzbDrone.ModelBinder.bind(this.model, this.el);
|
|
}
|
|
|
|
return oldItemCollectionViewRender.apply(this, arguments);
|
|
}; |