Opaque meta module + test - colorbar (#764)

* opaque colorbar test

* build

* rebase + build

* fixed opaque meta modules yay

Signed-off-by: tech4GT <varun.gupta1798@gmail.com>

* add test and prevent internal logs

Signed-off-by: tech4GT <varun.gupta1798@gmail.com>

* Update meta-modules.js
This commit is contained in:
Varun Gupta
2019-02-13 21:06:11 +05:30
committed by Jeffrey Warren
parent 53db6bd2ce
commit fa30c1b30f
6 changed files with 4894 additions and 4839 deletions

View File

@@ -6,7 +6,7 @@ ImageSequencer = function ImageSequencer(options) {
var sequencer = (this.name == "ImageSequencer") ? this : this.sequencer;
options = options || {};
options.inBrowser = options.inBrowser || isBrowser;
options.inBrowser = options.inBrowser === undefined ? isBrowser : options.inBrowser;
options.sequencerCounter = 0;
function objTypeOf(object) {