mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
39 lines
887 B
JavaScript
39 lines
887 B
JavaScript
'use strict';
|
|
|
|
define(
|
|
function () {
|
|
|
|
return function () {
|
|
|
|
this.viewName = function () {
|
|
if (this.template) {
|
|
var regex = new RegExp('\/', 'g');
|
|
|
|
return this.template
|
|
.toLocaleLowerCase()
|
|
.replace('template', '')
|
|
.replace(regex, '-');
|
|
}
|
|
|
|
return undefined;
|
|
};
|
|
|
|
var originalOnRender = this.onRender;
|
|
|
|
this.onRender = function () {
|
|
|
|
this.$el.removeClass('iv-' + this.viewName());
|
|
this.$el.addClass('iv-' + this.viewName());
|
|
|
|
if (originalOnRender) {
|
|
return originalOnRender.call(this);
|
|
}
|
|
|
|
return undefined;
|
|
};
|
|
|
|
return this;
|
|
};
|
|
}
|
|
);
|