Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Rybička
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TO
Rybička
Commits
5e58abdb
Commit
5e58abdb
authored
1 year ago
by
Tomáš Valenta
Browse files
Options
Downloads
Patches
Plain Diff
let the timer count down on its own if within 5 seconds
parent
d718632d
No related branches found
Branches containing commit
No related tags found
1 merge request
!9
Release
Pipeline
#15170
passed
1 year ago
Stage: build
Stage: test_deploy
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
static_src/timer.js
+13
-2
13 additions, 2 deletions
static_src/timer.js
with
13 additions
and
2 deletions
static_src/timer.js
+
13
−
2
View file @
5e58abdb
...
...
@@ -151,13 +151,15 @@ $(window).ready(
}
if
(
"
is_running
"
in
data
)
{
const
remainingTime
=
window
.
timer
.
getTimeValues
()
if
(
data
[
"
is_running
"
])
{
// Don't do anything if we have reached an inconsistent state,
// where the timer is at 0 but server still reports it playing.
// This will be resolved within a few milliseconds.
const
remainingTime
=
window
.
timer
.
getTimeValues
()
if
(
remainingTime
.
seconds
===
0
&&
remainingTime
.
minutes
===
0
)
{
if
(
remainingTime
.
minutes
===
0
&&
remainingTime
.
seconds
===
0
)
{
return
}
window
.
timer
.
start
()
...
...
@@ -166,6 +168,15 @@ $(window).ready(
$
(
"
#pause_play > .btn__body
"
).
html
(
"
⏸︎
"
)
window
.
timerIsRunning
=
true
}
else
{
if
(
window
.
timerIsRunning
&&
"
sync_time
"
in
data
&&
data
[
"
sync_time
"
][
"
minutes
"
]
===
0
&&
data
[
"
sync_time
"
][
"
seconds
"
]
===
0
)
{
return
}
window
.
timer
.
pause
()
$
(
"
#is_counting
"
).
prop
(
"
checked
"
,
false
)
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment