Merge pull request #2 from Azure/master

Fix Edge issue (#12)
This commit is contained in:
Mathieu Benoit 2018-10-26 20:49:34 -04:00 коммит произвёл GitHub
Родитель 1a07865928 96cc19dafe
Коммит a650743e76
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -32,9 +32,9 @@ function startConnection() {
.then(() => {
$('#connectionStatus').text('Connected');
console.log('connection started');
try { ko.applyBindings(viewModel); } catch { }
try { ko.applyBindings(viewModel); } catch (err) { console.error(err); }
})
.catch(console.error);
}
startConnection();
startConnection();