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");
}
}