Skip to content

Commit

Permalink
build in prep for release
Browse files Browse the repository at this point in the history
  • Loading branch information
PTaylour committed Mar 9, 2018
1 parent cc83357 commit 7c2bd10
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions dist/videocontext.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/videocontext.js.map

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions docs/api/SourceNodes_canvasnode.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ <h1 class="page-title">Source: SourceNodes/canvasnode.js</h1>
_load(){
super._load();
this._ready = true;
this._triggerCallbacks("loaded");
this._triggerCallbacks("loaded");
}

_unload(){
Expand All @@ -61,11 +61,11 @@ <h1 class="page-title">Source: SourceNodes/canvasnode.js</h1>
this._unload();
}
}

_update(currentTime){
//if (!super._update(currentTime)) return false;
super._update(currentTime);
if (this._startTime - this._currentTime &lt; this._preloadTime &amp;&amp; this._state !== SOURCENODESTATE.waiting &amp;&amp; this._state !== SOURCENODESTATE.ended)this._load();
if (this._startTime - this._currentTime &lt;= this._preloadTime &amp;&amp; this._state !== SOURCENODESTATE.waiting &amp;&amp; this._state !== SOURCENODESTATE.ended)this._load();

if (this._state === SOURCENODESTATE.playing){
return true;
Expand Down
4 changes: 2 additions & 2 deletions docs/api/SourceNodes_imagenode.js.html
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ <h1 class="page-title">Source: SourceNodes/imagenode.js</h1>
}else{
super._update(currentTime);
}
if (this._startTime - this._currentTime &lt; this._preloadTime &amp;&amp; this._state !== SOURCENODESTATE.waiting &amp;&amp; this._state !== SOURCENODESTATE.ended)this._load();

if (this._startTime - this._currentTime &lt;= this._preloadTime &amp;&amp; this._state !== SOURCENODESTATE.waiting &amp;&amp; this._state !== SOURCENODESTATE.ended)this._load();

if (this._state === SOURCENODESTATE.playing){
return true;
Expand Down
4 changes: 2 additions & 2 deletions docs/dist/videocontext.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/dist/videocontext.js.map

Large diffs are not rendered by default.

0 comments on commit 7c2bd10

Please sign in to comment.