built files

This commit is contained in:
jywarren
2019-04-30 14:44:02 -04:00
parent 6ff7b124e1
commit 506a238c83
4 changed files with 39 additions and 60 deletions

View File

@@ -311,11 +311,12 @@ function DefaultHtmlSequencerUi(_sequencer, options) {
function addStepUi() {
if ($(addStepSel + " select").val() == "none") return;
var newStepName;
if(typeof arguments[0] !== "string")
newStepName = $(addStepSel + " select option").html().toLowerCase();
else newStepName = arguments[0]
var newStepName = $(addStepSel + " select").val();
if(!newStepName) newStepName = arguments[0]
/*
* after adding the step we run the sequencer from defined step
* and since loadImage is not a part of the drawarray the step lies at current