mirror of
https://github.com/publiclab/image-sequencer.git
synced 2025-12-14 20:30:01 +01:00
Detect and Parse string separated module names (#787)
* detecting and parsing string separated module names * test fix * parsing multiple input methods * travis fix * test cases * requested changes made * test fix * rebase and fix conflicts
This commit is contained in:
committed by
Jeffrey Warren
parent
84aede7bc3
commit
ec40224831
@@ -6,6 +6,9 @@ function InsertStep(ref, index, name, o) {
|
||||
return ref.importJSON(ref.sequences[name]);
|
||||
}
|
||||
|
||||
if (ref.detectStringSyntax(name)) {
|
||||
return ref.stringToSteps(name)
|
||||
}
|
||||
|
||||
function insertStep(index, name, o_) {
|
||||
if (ref.modules[name]) var moduleInfo = ref.modules[name][1];
|
||||
|
||||
Reference in New Issue
Block a user