aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/application.js
diff options
context:
space:
mode:
authorValerio Virgillito2012-03-08 13:56:09 -0800
committerValerio Virgillito2012-03-08 13:56:09 -0800
commit22a66cb6e243a3f1c867b62e3942fd2e828019d9 (patch)
tree4b2f8bf0d8306964f35435dac3d1f6592b3dee19 /node_modules/montage/ui/application.js
parentcef07085443b7c31e878daaad083b7408c57e104 (diff)
downloadninja-22a66cb6e243a3f1c867b62e3942fd2e828019d9.tar.gz
integrating v0.7 montage into ninja
Signed-off-by: Valerio Virgillito <valerio@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 c7b3dc73..7cb4bd97 100755
--- a/node_modules/montage/ui/application.js
+++ b/node_modules/montage/ui/application.js
@@ -175,7 +175,7 @@ var Application = exports.Application = Montage.create(Montage, /** @lends monta
175 _createPopupSlot: {value: function(zIndex) { 175 _createPopupSlot: {value: function(zIndex) {
176 var slotEl = document.createElement('div'); 176 var slotEl = document.createElement('div');
177 document.body.appendChild(slotEl); 177 document.body.appendChild(slotEl);
178 slotEl.style['z-index'] = zIndex; 178 slotEl.style.zIndex = zIndex;
179 slotEl.style.position = 'absolute'; 179 slotEl.style.position = 'absolute';
180 180
181 var popupSlot = Slot.create(); 181 var popupSlot = Slot.create();
@@ -221,7 +221,7 @@ var Application = exports.Application = Montage.create(Montage, /** @lends monta
221 } 221 }
222 // use the new zIndex for custom popup 222 // use the new zIndex for custom popup
223 if(!isSystemPopup) { 223 if(!isSystemPopup) {
224 popupSlot.element.style['z-index'] = zIndex; 224 popupSlot.element.style.zIndex = zIndex;
225 } 225 }
226 226
227 popupSlot.content = content; 227 popupSlot.content = content;