Skip to content

Commit

Permalink
Upgrade all dependencies to try to fix dillonkearns#67
Browse files Browse the repository at this point in the history
  * correct typescript errors
  * do not correct Elm errors
  • Loading branch information
JulioJu committed Oct 16, 2019
1 parent a5f2df6 commit d444cbc
Show file tree
Hide file tree
Showing 8 changed files with 9,487 additions and 6,631 deletions.
24 changes: 24 additions & 0 deletions elm.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"type": "application",
"source-directories": [
"src"
],
"elm-version": "0.19.0",
"dependencies": {
"direct": {
"elm/browser": "1.0.1",
"elm/core": "1.0.2",
"elm/html": "1.0.0"
},
"indirect": {
"elm/json": "1.1.3",
"elm/time": "1.0.0",
"elm/url": "1.0.0",
"elm/virtual-dom": "1.0.2"
}
},
"test-dependencies": {
"direct": {},
"indirect": {}
}
}
7 changes: 4 additions & 3 deletions main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -327,14 +327,14 @@ function showStopTimerDialog() {
message: 'Stop the timer?',
cancelId: 1
})
if (dialogActionIndex === 1) {
dialogActionIndex.then(() => {
analytics.trackEventParams({
ec: 'stop-timer',
ea: 'cancel',
el: '',
ev: undefined
})
} else {
}).catch(() => {
closeTimer()
displayManager.showMain()
analytics.trackEventParams({
Expand All @@ -343,8 +343,9 @@ function showStopTimerDialog() {
el: '',
ev: undefined
})
}
})
} else {

displayManager.toggleMain()
}
dialogDisplayed = false
Expand Down
Loading

0 comments on commit d444cbc

Please sign in to comment.