Restructure API (#824)

* Change addsteps(), loadImages(), run() and default UI

* Restructure API completely

* Add updated dist files

* Removed extra comments

*  Indentation improved

* Update README.md
This commit is contained in:
Slytherin
2019-03-14 20:34:02 +05:30
committed by Jeffrey Warren
parent 3d1bbe5940
commit 2f21bec80a
32 changed files with 511 additions and 862 deletions

View File

@@ -1,5 +1,5 @@
// add steps to the sequencer
function AddStep(_sequencer, image, name, o) {
return require('./InsertStep')(_sequencer,image,-1,name,o);
function AddStep(_sequencer, name, o) {
return require('./InsertStep')(_sequencer,-1,name,o);
}
module.exports = AddStep;