aboutsummaryrefslogtreecommitdiff
path: root/node_modules/montage/ui/application.js
diff options
context:
space:
mode:
authorNivesh Rajbhandari2012-03-09 13:49:24 -0800
committerNivesh Rajbhandari2012-03-09 13:49:24 -0800
commita782acfbbf2d1ac5630c2cae5affcc369ba99785 (patch)
treec3a17caf06fce37a0c3a9054cd52b0f2f8ea844c /node_modules/montage/ui/application.js
parente2562c3f24eb5dbfb9e3bd2868cdf1a2806644bf (diff)
parentb4eb2f6cc1208fe5c18aa1f02a85adda25075d81 (diff)
downloadninja-a782acfbbf2d1ac5630c2cae5affcc369ba99785.tar.gz
Merge branch 'refs/heads/ninja-internal' into WebGLFixes
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;