mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-07-14 12:54:54 +00:00
Monotone-Parent: bf564e0891d80423226b26b83ed9a1ba7983bff5
Monotone-Revision: 62549471f18965b7b2503aa161e5f3bcffbf413f Monotone-Author: wsourdeau@inverse.ca Monotone-Date: 2006-11-02T22:05:03 Monotone-Branch: ca.inverse.sogo
This commit is contained in:
@@ -557,11 +557,11 @@ function onLogDblClick(event)
|
||||
function toggleLogConsole() {
|
||||
var logConsole = document.getElementById('logConsole');
|
||||
|
||||
var visibility = '' + logConsole.style.visibility;
|
||||
if (visibility.length == 0) {
|
||||
logConsole.style.visibility = 'visible;';
|
||||
var display = '' + logConsole.style.display;
|
||||
if (display.length == 0) {
|
||||
logConsole.style.display = 'block;';
|
||||
} else {
|
||||
logConsole.style.visibility = '';
|
||||
logConsole.style.display = '';
|
||||
}
|
||||
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user