From 5cb30216ba7fd695beb28c32c31acea0eb8ff808 Mon Sep 17 00:00:00 2001 From: Brenda Hellenthal Date: Thu, 10 Jul 2014 12:33:32 +0200 Subject: [PATCH] Fix highlight Highlighting was applied to the element that was mentioned in attachTo instead of the element that was mentioned in highlight. This is now set right. --- guiders.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guiders.js b/guiders.js index baad2e0..2a943ee 100644 --- a/guiders.js +++ b/guiders.js @@ -580,7 +580,7 @@ var guiders = (function($) { guiders._showOverlay(myGuider); // if guider is attached to an element, make sure it's visible if (myGuider.highlight && myGuider.attachTo) { - guiders._highlightElement(myGuider.attachTo); + guiders._highlightElement(myGuider.highlight); } }