mirror of
https://github.com/overte-org/overte.git
synced 2025-08-09 14:29:03 +02:00
reduce non-debug log spam
This commit is contained in:
parent
01436675b1
commit
3d7676e918
1 changed files with 2 additions and 2 deletions
|
@ -491,11 +491,11 @@ function initializeDOM() {
|
||||||
document.activeElement && document.activeElement.blur();
|
document.activeElement && document.activeElement.blur();
|
||||||
document.body.focus();
|
document.body.focus();
|
||||||
tooltipManager && tooltipManager.disable();
|
tooltipManager && tooltipManager.disable();
|
||||||
log('TOOLTIPS DISABLED');
|
debugPrint('TOOLTIPS DISABLED');
|
||||||
} else if (tooltipManager && bridgedSettings) {
|
} else if (tooltipManager && bridgedSettings) {
|
||||||
if (bridgedSettings.getValue('ui-enable-tooltips')){
|
if (bridgedSettings.getValue('ui-enable-tooltips')){
|
||||||
tooltipManager.enable();
|
tooltipManager.enable();
|
||||||
log('TOOLTIPS RE-ENABLED');
|
debugPrint('TOOLTIPS RE-ENABLED');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$('body').toggleClass('active', window._active);
|
$('body').toggleClass('active', window._active);
|
||||||
|
|
Loading…
Reference in a new issue