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