change link timeout

This commit is contained in:
rlx 2018-01-12 15:10:58 +01:00
parent 038c4aa409
commit 0bd1279ecf

4
icf.js
View file

@ -125,7 +125,9 @@ function mod(a, b) {
function play() { function play() {
if (speed <= 0 && acceleration < 0) { if (speed <= 0 && acceleration < 0) {
paused = true paused = true
timelineLink.style.display = 'none' if (!timelineLinkEntered) {
timelineLink.style.display = 'none'
}
return return
} }
position += speed / fpsAnimation position += speed / fpsAnimation