Skip to content

Commit

Permalink
rebuild
Browse files Browse the repository at this point in the history
  • Loading branch information
williamngan committed May 2, 2024
1 parent f0247e9 commit 7f01be9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5911,7 +5911,7 @@ var CanvasSpace2 = class extends MultiTouchSpace {
observer.observe(this._container, { childList: true });
this._container.appendChild(this._canvas);
} else {
this._ready(callback);
setTimeout(this._ready.bind(this, callback), 100);
}
}
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/index.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -5843,7 +5843,7 @@ var CanvasSpace2 = class extends MultiTouchSpace {
observer.observe(this._container, { childList: true });
this._container.appendChild(this._canvas);
} else {
this._ready(callback);
setTimeout(this._ready.bind(this, callback), 100);
}
}
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/pts.js
Original file line number Diff line number Diff line change
Expand Up @@ -5943,7 +5943,7 @@ See https://github.com/williamngan/pts for details. */
observer.observe(this._container, { childList: true });
this._container.appendChild(this._canvas);
} else {
this._ready(callback);
setTimeout(this._ready.bind(this, callback), 100);
}
}
/**
Expand Down
Loading

0 comments on commit 7f01be9

Please sign in to comment.