start breaking out a ui feature to set an input step (#253)

* start

* refactoring

* working

* version bump
This commit is contained in:
Jeffrey Warren
2018-05-09 13:49:11 -04:00
committed by GitHub
parent 6ce78f87f4
commit 630eb773de
8 changed files with 122 additions and 57 deletions

View File

@@ -3,6 +3,7 @@ else {var isBrowser = false}
ImageSequencer = function ImageSequencer(options) {
var sequencer = (this.name == "ImageSequencer")?this:this.sequencer;
options = options || {};
options.inBrowser = options.inBrowser || isBrowser;
options.sequencerCounter = 0;
@@ -220,7 +221,9 @@ ImageSequencer = function ImageSequencer(options) {
//other functions
log: log,
objTypeOf: objTypeOf,
copy: copy
copy: copy,
setInputStep: require('./ui/SetInputStep')(sequencer)
}
}