Compare commits

...

2 Commits

1 changed files with 7 additions and 2 deletions

View File

@ -159,6 +159,8 @@ progressionSelector.addEventListener('input', (ev) => {
let cancelAnim : number | undefined = undefined;
function restartAnimation(startIfPaused: boolean) {
if (!r.animation) return;
if (cancelAnim !== undefined) {
cancelAnimationFrame(cancelAnim);
} else if (!startIfPaused) {
@ -210,6 +212,7 @@ const dialect = {
let dance: danceLibrary.ContraDBDance;
function buildMovesList() {
if (!r.animation) return;
removeAllChildNodes(movesList);
const formation = document.createElement('li');
@ -297,6 +300,8 @@ function playAnimation(bpm: number, start: number, end: number) {
const msPerBeat = (60 * 1000) / bpm;
function anim() {
if (!r.animation) return;
const now = Date.now();
const msElapsed = now - startTime;
@ -363,7 +368,7 @@ displaySettingsDiv.appendChild(zoomLabel);
const extraSetsSelector = document.createElement('input');
extraSetsSelector.type = 'number';
extraSetsSelector.min = '0';
extraSetsSelector.step = '0.1';
extraSetsSelector.step = '0.2';
extraSetsSelector.value = canvasSetting.extraSets!.toPrecision(1);
extraSetsSelector.id = 'extraSets';
extraSetsSelector.style.width = '3em';
@ -381,7 +386,7 @@ displaySettingsDiv.appendChild(extraSetsSelector);
const extraLinesSelector = document.createElement('input');
extraLinesSelector.type = 'number';
extraLinesSelector.min = '0';
extraLinesSelector.step = '0.1';
extraLinesSelector.step = '0.2';
extraLinesSelector.value = canvasSetting.extraLines!.toPrecision(1);
extraLinesSelector.id = 'extraLines';
extraLinesSelector.style.width = '3em';