diff options
author | Jose Antonio Marquez | 2012-02-06 16:32:15 -0800 |
---|---|---|
committer | Jose Antonio Marquez | 2012-02-06 16:32:15 -0800 |
commit | 0db246b19dc0b50f4f663a147ec92c49e656ae35 (patch) | |
tree | cf50f0dcb79ba0f62d1e913845e7ecb37e4b1168 /js/components | |
parent | 7f77982f49c75568431ece82d53371f6335c6e39 (diff) | |
download | ninja-0db246b19dc0b50f4f663a147ec92c49e656ae35.tar.gz |
Adding logic to copy ninja libraries
Setting up the logic to handling copying ninja required libraries into the app local file system sandbox to be used by cloud simulator.
Diffstat (limited to 'js/components')
-rwxr-xr-x | js/components/popup-manager.reel/popup-manager.js | 2 |
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) { |