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.
24 lines
447 B
JavaScript
24 lines
447 B
JavaScript
/* global $, Whisper, i18n */
|
|
|
|
$(document).on('keyup', e => {
|
|
'use strict';
|
|
|
|
if (e.keyCode === 27) {
|
|
window.closePermissionsPopup();
|
|
}
|
|
});
|
|
|
|
const dialogParams = {
|
|
title: i18n('audioPermissionNeeded'),
|
|
okText: i18n('allowAccess'),
|
|
resolve: () => {
|
|
'use strict';
|
|
|
|
window.setMediaPermissions(true);
|
|
window.closePermissionsPopup();
|
|
},
|
|
onClose: window.closePermissionsPopup,
|
|
};
|
|
window.confirmationDialog(dialogParams);
|
|
|