1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-22 22:16:13 -04:00

New: Mass series editor

This commit is contained in:
Mark McDowall
2013-12-08 21:25:27 -08:00
parent f76c4700a6
commit a9ece10144
26 changed files with 606 additions and 34 deletions
+3 -3
View File
@@ -11,7 +11,7 @@ define(
constructor: function () {
Backbone.Marionette.Region.prototype.constructor.apply(this, arguments);
this.on('show', this.showModal, this);
this.on('show', this.showPanel, this);
},
getEl: function (selector) {
@@ -20,7 +20,7 @@ define(
return $el;
},
showModal: function () {
showPanel: function () {
this.$el.addClass('modal hide fade');
//need tab index so close on escape works
@@ -32,7 +32,7 @@ define(
'backdrop': 'static'});
},
closeModal: function () {
closePanel: function () {
$(this.el).modal('hide');
this.reset();
}