2018-07-07 00:48:14 +00:00
|
|
|
/* global $, Whisper, i18n */
|
|
|
|
|
|
|
|
$(document).on('keyup', e => {
|
|
|
|
'use strict';
|
|
|
|
|
2018-07-03 22:33:50 +00:00
|
|
|
if (e.keyCode === 27) {
|
|
|
|
window.closePermissionsPopup();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const $body = $(document.body);
|
2018-06-25 23:57:06 +00:00
|
|
|
$body.addClass(`${window.theme}-theme`);
|
2018-07-03 22:33:50 +00:00
|
|
|
|
|
|
|
window.view = new Whisper.ConfirmationDialogView({
|
|
|
|
message: i18n('audioPermissionNeeded'),
|
|
|
|
okText: i18n('allowAccess'),
|
|
|
|
resolve: () => {
|
2018-07-07 00:48:14 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-07-03 22:33:50 +00:00
|
|
|
window.setMediaPermissions(true);
|
|
|
|
window.closePermissionsPopup();
|
|
|
|
},
|
|
|
|
reject: window.closePermissionsPopup,
|
|
|
|
});
|
|
|
|
|
|
|
|
window.view.$el.appendTo($body);
|