diff --git a/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx b/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx index 0db954613c..e848d3d65d 100755 --- a/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx +++ b/bigbluebutton-html5/imports/ui/components/nav-bar/component.jsx @@ -60,6 +60,11 @@ class NavBar extends Component { }); } + soundForUnreadeMessages() { + const snd = new Audio('resources/sounds/notify.mp3'); + snd.play(); + } + render() { const { hasUnreadMessages, beingRecorded } = this.props; @@ -88,6 +93,7 @@ class NavBar extends Component {
+ {hasUnreadMessages ? this.soundForUnreadeMessages() : null} ); } diff --git a/bigbluebutton-html5/public/resources/sounds/notify.mp3 b/bigbluebutton-html5/public/resources/sounds/notify.mp3 new file mode 100755 index 0000000000..432c237467 Binary files /dev/null and b/bigbluebutton-html5/public/resources/sounds/notify.mp3 differ