We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adabd09 commit eca42ddCopy full SHA for eca42dd
src/js/stores/sound-notification.js
@@ -10,11 +10,11 @@ var SoundNotificationStore = Reflux.createStore({
10
11
init: function () {
12
this._previousNotifications = [];
13
- this._audio = new Audio('sounds/digi.wav');
14
},
15
16
playSound: function () {
17
- this._audio.play();
+ var audio = new Audio('sounds/digi.wav');
+ audio.play();
18
19
20
showNotification: function (countNew, response, latestNotification) {
0 commit comments