summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-03-18 12:29:04 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-03-18 12:29:04 -0300
commitf5a8703b38c380e1ea170328695b417098f08050 (patch)
tree5cb521ac0c3c32fef762fd5d321e9b4efee19fbb
parent5b824cb8552f5dd81d7c1d7800b808d4defc17ad (diff)
downloadchat-f5a8703b38c380e1ea170328695b417098f08050.tar.gz
chat-f5a8703b38c380e1ea170328695b417098f08050.tar.bz2
chat-f5a8703b38c380e1ea170328695b417098f08050.zip
PLT-2392: Fix for Notification sound broken
-rw-r--r--webapp/utils/utils.jsx3
-rw-r--r--webapp/webpack.config.js2
2 files changed, 3 insertions, 2 deletions
diff --git a/webapp/utils/utils.jsx b/webapp/utils/utils.jsx
index 12a7ff50e..95a0f99d5 100644
--- a/webapp/utils/utils.jsx
+++ b/webapp/utils/utils.jsx
@@ -20,6 +20,7 @@ import React from 'react';
import {FormattedTime} from 'react-intl';
import icon50 from 'images/icon50x50.png';
+import bing from 'images/bing.mp3';
export function isEmail(email) {
// writing a regex to match all valid email addresses is really, really hard (see http://stackoverflow.com/a/201378)
@@ -187,7 +188,7 @@ var canDing = true;
export function ding() {
if (!isBrowserFirefox() && canDing) {
- var audio = new Audio('/static/images/bing.mp3');
+ var audio = new Audio(bing);
audio.play();
canDing = false;
setTimeout(() => {
diff --git a/webapp/webpack.config.js b/webapp/webpack.config.js
index 4a21d44c7..ee5c7e70b 100644
--- a/webapp/webpack.config.js
+++ b/webapp/webpack.config.js
@@ -52,7 +52,7 @@ var config = {
loaders: ['style', 'css']
},
{
- test: /\.(png|eot|tiff|svg|woff2|woff|ttf|gif)$/,
+ test: /\.(png|eot|tiff|svg|woff2|woff|ttf|gif|mp3)$/,
loader: 'file',
query: {
name: 'files/[hash].[ext]'