You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
376 B
JavaScript
15 lines
376 B
JavaScript
$(document).on('keyup', function(e) {
|
|
if (e.keyCode === 27) {
|
|
window.closeDebugLog();
|
|
}
|
|
});
|
|
|
|
const $body = $(document.body);
|
|
$body.addClass(`${window.theme}-theme`);
|
|
|
|
// got.js appears to need this to successfully submit debug logs to the cloud
|
|
window.setImmediate = window.nodeSetImmediate;
|
|
|
|
window.view = new Whisper.DebugLogView();
|
|
window.view.$el.appendTo($body);
|