Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: erasing demo #306

Merged
merged 18 commits into from
Jun 19, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions _includes/codepen.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script type="text/javascript">
var currentScript = 'https://unpkg.com/fabric@4.3.0/dist/fabric.js';
var currentScript = 'https://unpkg.com/fabric@latest/dist/fabric.js';
ShaMan123 marked this conversation as resolved.
Show resolved Hide resolved
function codepenLoaded() {
function escapeHtml(unsafe) {
return unsafe
Expand All @@ -21,7 +21,7 @@
if (!currentData.scripts) {
currentData.scripts = [];
}
currentData.scripts.push(currentScript);
currentData.scripts.unshift(currentScript);
} else {
currentData = { scripts: [currentScript] };
}
Expand Down
Loading