From 797d1f499101346d5060243e7b74ee9cdb5f1733 Mon Sep 17 00:00:00 2001 From: Jeremy Maitin-Shepard Date: Sun, 23 Dec 2007 16:02:50 -0500 Subject: [PATCH] hints.js: Fixed bug with using active_index --- modules/hints.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/hints.js b/modules/hints.js index baea714..c89a260 100644 --- a/modules/hints.js +++ b/modules/hints.js @@ -176,7 +176,7 @@ hint_manager.prototype = { h.img_hint = img_hint; doc.documentElement.appendChild(img_hint); } - h.img_hint.style.backgroundColor = (active_index == i) ? + h.img_hint.style.backgroundColor = (active_number == i) ? active_img_hint_background_color : img_hint_background_color; h.img_hint.style.display = "inline"; } -- 2.11.4.GIT