aboutsummaryrefslogtreecommitdiff
path: root/js/panels/color
diff options
context:
space:
mode:
Diffstat (limited to 'js/panels/color')
-rwxr-xr-xjs/panels/color/colorpopup-manager.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/panels/color/colorpopup-manager.js b/js/panels/color/colorpopup-manager.js
index cf6fd7ac..dc50154c 100755
--- a/js/panels/color/colorpopup-manager.js
+++ b/js/panels/color/colorpopup-manager.js
@@ -114,7 +114,7 @@ exports.ColorPopupManager = Montage.create(Component, {
114 right = left + parseInt(element.popup.element.offsetWidth); 114 right = left + parseInt(element.popup.element.offsetWidth);
115 //Getting vertical limits 115 //Getting vertical limits
116 top = parseInt(element.popup.element.style.top) + parseInt(element.popup.element.style.marginTop); 116 top = parseInt(element.popup.element.style.top) + parseInt(element.popup.element.style.marginTop);
117 bottom = left + parseInt(element.popup.element.offsetHeight); 117 bottom = top + parseInt(element.popup.element.offsetHeight);
118 //Checking click position in relation to limits 118 //Checking click position in relation to limits
119 if ((e._event.clientX < left || e._event.clientX > right) || (e._event.clientY < top || e._event.clientY > bottom)) { 119 if ((e._event.clientX < left || e._event.clientX > right) || (e._event.clientY < top || e._event.clientY > bottom)) {
120 //Hides popups since click is outside limits 120 //Hides popups since click is outside limits