mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
43a44793c5
Also removed all hints of previous linters
19 lines
437 B
JavaScript
19 lines
437 B
JavaScript
/* global $: false */
|
|
/* global Whisper: false */
|
|
|
|
$(document).on('keyup', e => {
|
|
'use strict';
|
|
|
|
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);
|