Compare commits
No commits in common. "41fee51a25c9217eb830521e8558f3ad83be4b16" and "16f374d927e68edacc3fcfe8320cb299f4fbe679" have entirely different histories.
41fee51a25
...
16f374d927
|
@ -159,8 +159,6 @@ 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) {
|
||||
|
@ -212,7 +210,6 @@ const dialect = {
|
|||
|
||||
let dance: danceLibrary.ContraDBDance;
|
||||
function buildMovesList() {
|
||||
if (!r.animation) return;
|
||||
removeAllChildNodes(movesList);
|
||||
|
||||
const formation = document.createElement('li');
|
||||
|
@ -300,8 +297,6 @@ 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;
|
||||
|
||||
|
@ -368,7 +363,7 @@ displaySettingsDiv.appendChild(zoomLabel);
|
|||
const extraSetsSelector = document.createElement('input');
|
||||
extraSetsSelector.type = 'number';
|
||||
extraSetsSelector.min = '0';
|
||||
extraSetsSelector.step = '0.2';
|
||||
extraSetsSelector.step = '0.1';
|
||||
extraSetsSelector.value = canvasSetting.extraSets!.toPrecision(1);
|
||||
extraSetsSelector.id = 'extraSets';
|
||||
extraSetsSelector.style.width = '3em';
|
||||
|
@ -386,7 +381,7 @@ displaySettingsDiv.appendChild(extraSetsSelector);
|
|||
const extraLinesSelector = document.createElement('input');
|
||||
extraLinesSelector.type = 'number';
|
||||
extraLinesSelector.min = '0';
|
||||
extraLinesSelector.step = '0.2';
|
||||
extraLinesSelector.step = '0.1';
|
||||
extraLinesSelector.value = canvasSetting.extraLines!.toPrecision(1);
|
||||
extraLinesSelector.id = 'extraLines';
|
||||
extraLinesSelector.style.width = '3em';
|
||||
|
|
Loading…
Reference in New Issue
Block a user