From f5ff76932a8ac29d0b0c9224349ef6f527c477a2 Mon Sep 17 00:00:00 2001 From: Mike Cardwell Date: Tue, 28 Sep 2010 16:22:17 +0100 Subject: [PATCH] Fix IE7 bug which causes the TOC to immediately close after opening --- templates/web/doc/chapter.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/web/doc/chapter.js b/templates/web/doc/chapter.js index 1e81a84..988bf6a 100644 --- a/templates/web/doc/chapter.js +++ b/templates/web/doc/chapter.js @@ -47,7 +47,7 @@ $ul.removeClass('hidden').css('visibility', 'hidden').appendTo('#toc').css('left', '-' + $ul.width() + 'px').css('visibility', 'visible'); $('#toc > img').mousedown(click_func); $('#toc > ul').click(click_func); - $('#toc a').click(function (e) { + $('#toc, #toc a').click(function (e) { e.stopPropagation() }); }); -- 2.30.2