Skip to content

Commit

Permalink
fix(examples): Fixed mini callback on code
Browse files Browse the repository at this point in the history
  • Loading branch information
gaiborjosue committed Dec 12, 2023
1 parent 153f49f commit 924b75b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
4 changes: 1 addition & 3 deletions examples/plotly.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
script = document.createElement("script");
script.type = "text/javascript";
// script.src = "https://boostlet.org/dist/boostlet.min.js";
// script.src = "http://127.0.0.1:5500/boostlet-edward/dist/boostlet.min.js"
script.src = "https://gaiborjosue.github.io/boostlet/dist/boostlet.min.js"
script.src = "https://boostlet.org/dist/boostlet.min.js";

script.onload = run;
document.head.appendChild(script);
Expand Down
3 changes: 1 addition & 2 deletions examples/segmentanything.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://gaiborjosue.github.io/boostlet/dist/boostlet.min.js";
// script.src = "http://127.0.0.1:5500/boostlet-edward/dist/boostlet.min.js"
script.src = "https://boostlet.org/dist/boostlet.min.js";
script.onload = run;
document.head.appendChild(script);
eval(script);
Expand Down
3 changes: 1 addition & 2 deletions examples/sobel.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
script = document.createElement("script");
script.type = "text/javascript";
script.src = "https://gaiborjosue.github.io/boostlet/dist/boostlet.min.js"
// script.src = "http://127.0.0.1:5500/boostlet-edward/dist/boostlet.min.js"
script.src = "https://boostlet.org/dist/boostlet.min.js";

script.onload = run;
document.head.appendChild(script);
Expand Down

0 comments on commit 924b75b

Please sign in to comment.