aboutsummaryrefslogtreecommitdiff
path: root/js/components/popup-manager.reel/popup-manager.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/components/popup-manager.reel/popup-manager.js')
-rwxr-xr-xjs/components/popup-manager.reel/popup-manager.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/components/popup-manager.reel/popup-manager.js b/js/components/popup-manager.reel/popup-manager.js
index bc755f74..fbcd5035 100755
--- a/js/components/popup-manager.reel/popup-manager.js
+++ b/js/components/popup-manager.reel/popup-manager.js
@@ -117,7 +117,7 @@ exports.PopupMananger = Montage.create(Component, {
117 _getNextHighestZindex: { 117 _getNextHighestZindex: {
118 numerable: false, 118 numerable: false,
119 value: function (parent) { 119 value: function (parent) {
120 //Adapcted from: http://greengeckodesign.com/blog/2007/07/get-highest-z-index-in-javascript.html 120 //CSS specificity in javascript found at http://gbradley.com/2009/10/02/css-specificity-in-javascript used with permission from Graham Bradley
121 var high = 0, current = 0, children = [], i; 121 var high = 0, current = 0, children = [], i;
122 // 122 //
123 if (parent) { 123 if (parent) {