mirror of
https://github.com/placeAtlas/atlas.git
synced 2024-11-15 14:33:36 +01:00
Fix bug when period capping on 100
Co-authored-by: Fabian Wunsch <42294590+fabi321@users.noreply.github.com>
This commit is contained in:
parent
ab573d11b0
commit
35bedfac34
1 changed files with 2 additions and 2 deletions
|
@ -523,10 +523,10 @@ function initPeriodGroups() {
|
|||
periodVisibilityEl.id = "periodVisibility" + index
|
||||
periodVariationEl.id = "periodVariation" + index
|
||||
|
||||
startPeriodEl.value = start
|
||||
endPeriodEl.value = end
|
||||
startPeriodEl.max = variationsConfig[variation].versions.length - 1
|
||||
endPeriodEl.max = variationsConfig[variation].versions.length - 1
|
||||
startPeriodEl.value = start
|
||||
endPeriodEl.value = end
|
||||
|
||||
startPeriodEl.addEventListener('input', event => {
|
||||
timelineSlider.value = parseInt(event.target.value)
|
||||
|
|
Loading…
Reference in a new issue