mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-03-13 05:51:03 +00:00
add workaround to be able to play sound notifications on Firefox
This commit is contained in:
parent
9ac1daabf1
commit
68fe2b0174
@ -2333,4 +2333,11 @@ $(document).ready(function () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
changeStyle();
|
changeStyle();
|
||||||
|
|
||||||
|
// need to play something once in result of click on Firefox to be able to play sound notifications
|
||||||
|
// FXIME it's just workaround of FF's bug, see https://bugzilla.mozilla.org/show_bug.cgi?id=1197631
|
||||||
|
$('body').on('click', function () {
|
||||||
|
playSound('player', $.Options.sndMention.val, 0.001);
|
||||||
|
setTimeout(function () {$('body').off('click');}, 10000); // sound must be played before unbinding
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
Loading…
x
Reference in New Issue
Block a user