From 9a00599af5ca5745b51d100c6204dd52a310a530 Mon Sep 17 00:00:00 2001 From: lafsar Date: Fri, 11 Mar 2016 12:06:50 -0700 Subject: [PATCH] jqColor.js line 118 minor correction - duplicate '+' sign --- jQuery_implementation/jqColor.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jQuery_implementation/jqColor.js b/jQuery_implementation/jqColor.js index 07ae590..29767dc 100644 --- a/jQuery_implementation/jqColor.js +++ b/jQuery_implementation/jqColor.js @@ -115,7 +115,7 @@ $colorPicker.css({ 'position': 'absolute', 'left': position.left + options.margin.left, - 'top': position.top + +$input.outerHeight(true) + options.margin.top + 'top': position.top + $input.outerHeight(true) + options.margin.top }); if (!multiple) { options.input = elm; @@ -218,4 +218,4 @@ (options.secure ? '; secure' : ''); } }; -})(jQuery, this); \ No newline at end of file +})(jQuery, this);