aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/application.js
diff options
context:
space:
mode:
authorArmen Kesablyan2012-05-08 16:43:43 -0700
committerArmen Kesablyan2012-05-08 16:43:43 -0700
commitdc075ffcc6dd03c090d90fad999eee9b924d56ee (patch)
tree867f8bdd588c8f9076979233ca46a688ff70523e /node_modules/montage/ui/application.js
parent5d7e470351fd150d5e70a97332fa2f2553797499 (diff)
parent4d949f141247215b5f2a6ec0cfc7d2d31cf2bb1f (diff)
downloadninja-dc075ffcc6dd03c090d90fad999eee9b924d56ee.tar.gz
Merge branch 'refs/heads/dom-architecture' into binding
Conflicts: js/components/layout/tools-properties.reel/tools-properties.html Signed-off-by: Armen Kesablyan <armen@motorola.com>
Diffstat (limited to 'node_modules/montage/ui/application.js')
-rwxr-xr-xnode_modules/montage/ui/application.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/node_modules/montage/ui/application.js b/node_modules/montage/ui/application.js
index 7cb4bd97..bbce6835 100755
--- a/node_modules/montage/ui/application.js
+++ b/node_modules/montage/ui/application.js
@@ -169,7 +169,7 @@ var Application = exports.Application = Montage.create(Montage, /** @lends monta
169 _zIndex: {value: null}, 169 _zIndex: {value: null},
170 170
171 _isSystemPopup: {value: function(type) { 171 _isSystemPopup: {value: function(type) {
172 return (type === 'alert' || type === 'confirm' || type === 'loading'); 172 return (type === 'alert' || type === 'confirm' || type === 'notify');
173 }}, 173 }},
174 174
175 _createPopupSlot: {value: function(zIndex) { 175 _createPopupSlot: {value: function(zIndex) {
@@ -201,7 +201,7 @@ var Application = exports.Application = Montage.create(Montage, /** @lends monta
201 case "confirm": 201 case "confirm":
202 zIndex = 9003; 202 zIndex = 9003;
203 break; 203 break;
204 case "loading": 204 case "notify":
205 zIndex = 9002; 205 zIndex = 9002;
206 break; 206 break;
207 } 207 }