signal-desktop/js/settings_start.js
2018-07-17 15:45:40 -07:00

30 lines
814 B
JavaScript

$(document).on('keyup', function(e) {
if (e.keyCode === 27) {
window.closeSettings();
}
});
const $body = $(document.body);
$body.addClass(`${window.theme}-theme`);
const getInitialData = async () => ({
deviceName: await window.getDeviceName(),
themeSetting: await window.getThemeSetting(),
hideMenuBar: await window.getHideMenuBar(),
notificationSetting: await window.getNotificationSetting(),
audioNotification: await window.getAudioNotification(),
mediaPermissions: await window.getMediaPermissions(),
isPrimary: await window.isPrimary(),
lastSyncTime: await window.getLastSyncTime(),
});
window.initialRequest = getInitialData();
window.initialRequest.then(data => {
window.initialData = data;
window.view = new Whisper.SettingsView();
window.view.$el.appendTo($body);
});