1
0
mirror of https://git.tt-rss.org/git/tt-rss.git synced 2025-12-15 05:35:56 +00:00

debug mode tweaks, remove mouse_handler()

This commit is contained in:
Andrew Dolgov
2008-05-19 12:28:20 +01:00
parent 19d7bfcd1d
commit 8836613c43
8 changed files with 12 additions and 53 deletions

View File

@@ -1,5 +1,4 @@
var hotkeys_enabled = true;
var debug_mode_enabled = false;
var xmlhttp_rpc = Ajax.getTransport();
var notify_silent = false;
var last_progress_point = 0;
@@ -1384,7 +1383,7 @@ function debug(msg) {
}
var c = document.getElementById('debug_output');
if (c && c.style.display == "block") {
if (c && Element.visible(c)) {
while (c.lastChild != 'undefined' && c.childNodes.length > 100) {
c.removeChild(c.lastChild);
}