Monotone-Parent: c2a5e3fb9246462545f9ecf1c552400ae0d6a9e9

Monotone-Revision: b8ad0061e865a522c79c6a19bc8d7841469af81a

Monotone-Author: wsourdeau@inverse.ca
Monotone-Date: 2010-06-02T19:11:15
Monotone-Branch: ca.inverse.sogo
This commit is contained in:
Wolfgang Sourdeau
2010-06-02 19:11:15 +00:00
parent d12f6ac78c
commit ba2b9aad81
17 changed files with 103 additions and 104 deletions

View File

@@ -96,11 +96,11 @@ function toggleDetails() {
if (div.style.visibility) {
div.style.visibility = null;
window.resizeBy(0, -(div.clientHeight + buttonsHeight));
$("detailsButton").innerHTML = getLabel("Show Details");
$("detailsButton").innerHTML = _("Show Details");
} else {
div.style.visibility = 'visible;';
window.resizeBy(0, (div.clientHeight + buttonsHeight));
$("detailsButton").innerHTML = getLabel("Hide Details");
$("detailsButton").innerHTML = _("Hide Details");
}
return false;