1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-25 22:46:31 -04:00

UI dependency graph cleanup

This commit is contained in:
kayone
2013-10-08 18:43:41 -07:00
parent 86ea33b638
commit 4948d0608b
87 changed files with 1119 additions and 735 deletions
+3 -3
View File
@@ -1,10 +1,10 @@
'use strict';
define([
'app',
'AppLayout',
'marionette',
'Settings/Notifications/EditView'
], function (App, Marionette, EditView) {
], function (AppLayout, Marionette, EditView) {
return Marionette.ItemView.extend({
template: 'Settings/Notifications/AddItemTemplate',
@@ -31,7 +31,7 @@ define([
});
var editView = new EditView({ model: this.model, notificationCollection: this.notificationCollection });
App.modalRegion.show(editView);
AppLayout.modalRegion.show(editView);
}
});
});