Skip to content
This repository has been archived by the owner on Jan 26, 2021. It is now read-only.

Commit

Permalink
Merge pull request #2 from Azure/master
Browse files Browse the repository at this point in the history
Fix Edge issue (#12)
  • Loading branch information
mathieu-benoit authored Oct 27, 2018
2 parents 1a07865 + 96cc19d commit a650743
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions parrot/wwwroot/scripts/daemon.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();

0 comments on commit a650743

Please sign in to comment.