Updating some client deps + eslint

Этот коммит содержится в:
Christopher Speller
2016-02-22 08:31:10 -05:00
родитель 040bff2b9f
Коммит 4c92a1c1e3
90 изменённых файлов: 449 добавлений и 406 удалений

Просмотреть файл

@@ -142,6 +142,7 @@ export function getCookie(name) {
if (parts.length === 2) {
return parts.pop().split(';').shift();
}
return '';
}
var requestedNotificationPermission = false;
@@ -188,7 +189,10 @@ export function ding() {
var audio = new Audio('/static/images/bing.mp3');
audio.play();
canDing = false;
setTimeout(() => canDing = true, 3000);
setTimeout(() => {
canDing = true;
return;
}, 3000);
}
}