]> granicus.if.org Git - docbook-dsssl/commitdiff
Correct show/hide toc button tooltip text
authorDavid Cramer <david@thingbag.net>
Mon, 16 Aug 2010 16:04:18 +0000 (16:04 +0000)
committerDavid Cramer <david@thingbag.net>
Mon, 16 Aug 2010 16:04:18 +0000 (16:04 +0000)
xsl/webhelp/template/common/main.js

index 246ecde30131e3fee8ed378f7b7b4f8e878682db..954bf93a9d9cdfda134f013010e76db9f04fcc37 100755 (executable)
@@ -104,13 +104,13 @@ function showHideToc() {
         showHideButton.removeClass('pointLeft').addClass('pointRight');
         content.css("margin", "0 0 0 0");
         leftNavigation.css("display","none");
-        showHideButton.attr("title", "Hide the TOC tree");
+        showHideButton.attr("title", "Show the TOC tree");
     } else {
         //Show the TOC
         showHideButton.removeClass('pointRight').addClass('pointLeft');
         content.css("margin", "0 0 0 280px");
         leftNavigation.css("display","block");
-        showHideButton.attr("title", "Show the TOC Tree");
+        showHideButton.attr("title", "Hide the TOC Tree");
     }
 }