|
|
@ -338,7 +338,7 @@ function init() {
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
|
|
if (getURLParam('debug')) {
|
|
|
|
if (getURLParam('debug')) {
|
|
|
|
document.getElementById('debug_output').style.display = 'block';
|
|
|
|
Element.show("debug_output");
|
|
|
|
debug('debug mode activated');
|
|
|
|
debug('debug mode activated');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -967,11 +967,11 @@ function hotkey_handler(e) {
|
|
|
|
if (!hotkey_prefix) {
|
|
|
|
if (!hotkey_prefix) {
|
|
|
|
|
|
|
|
|
|
|
|
if (keycode == 68 && shift_key) { // d
|
|
|
|
if (keycode == 68 && shift_key) { // d
|
|
|
|
if (!debug_mode_enabled) {
|
|
|
|
if (!Element.visible("debug_output")) {
|
|
|
|
document.getElementById('debug_output').style.display = 'block';
|
|
|
|
Element.show("debug_output");
|
|
|
|
debug('debug mode activated');
|
|
|
|
debug('debug mode activated');
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
document.getElementById('debug_output').style.display = 'none';
|
|
|
|
Element.hide("debug_output");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return;
|
|
|
|
return;
|
|
|
@ -1407,18 +1407,3 @@ function hotkey_handler(e) {
|
|
|
|
exception_error("hotkey_handler", e);
|
|
|
|
exception_error("hotkey_handler", e);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function mouse_handler(e) {
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
var r_mouse = false;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (window.event) {
|
|
|
|
|
|
|
|
r_mouse = window.event.button == 2;
|
|
|
|
|
|
|
|
} else if (e) {
|
|
|
|
|
|
|
|
r_mouse = e.which == 3;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} catch (e) {
|
|
|
|
|
|
|
|
exception_error("mouse_handler", e);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|