summaryrefslogtreecommitdiffstats
path: root/module/web/app/scripts/views/notificationView.js
diff options
context:
space:
mode:
Diffstat (limited to 'module/web/app/scripts/views/notificationView.js')
-rw-r--r--module/web/app/scripts/views/notificationView.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/module/web/app/scripts/views/notificationView.js b/module/web/app/scripts/views/notificationView.js
index 1dc150c79..abfcd8079 100644
--- a/module/web/app/scripts/views/notificationView.js
+++ b/module/web/app/scripts/views/notificationView.js
@@ -63,9 +63,9 @@ define(['jquery', 'backbone', 'underscore', 'app', 'collections/InteractionList'
openQuery: function() {
var self = this;
- _.requireOnce(['views/queryModal'], function(modalView) {
+ _.requireOnce(['views/queryModal'], function(ModalView) {
if (self.modal === null) {
- self.modal = new modalView();
+ self.modal = new ModalView();
self.modal.parent = self;
}