From: Mike Cardwell Date: Tue, 28 Sep 2010 15:22:17 +0000 (+0100) Subject: Fix IE7 bug which causes the TOC to immediately close after opening X-Git-Tag: exim-4_89_1~78^2 X-Git-Url: https://git.exim.org/exim-website.git/commitdiff_plain/f5ff76932a8ac29d0b0c9224349ef6f527c477a2 Fix IE7 bug which causes the TOC to immediately close after opening --- 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() }); });