Skip to content
Open
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,3 @@
node_modules/
playground/jsonld.js
_site/
package-lock.json
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,10 +102,6 @@ surrounding UI using [petite-vue][].
The `npm run build:editor` command uses [Rollup][] to build the final JS bundle
at `playground/next/editor.bundle.js` which contains the browser ready JS code.

Only the first two should be edited. However, `editor.bundle.js` should be built
locally and committed along with the rest of the site to avoid unnecessary build
time/cost/waste at deployment time.

Website Analytics
-----------------

Expand Down
4 changes: 3 additions & 1 deletion _layouts/fomantic.liquid
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,9 @@
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/semantic.min.js"></script>
<script>
$('#keyboard-shortcuts').popup({ on: 'click', inline: true });
$('.ui.popup').each((i, el) => {
$(el).prev().popup({ on: 'click', inline: true, preserve: true });
});
</script>
</body>
</html>
Loading