Skip to content

Commit

Permalink
Fix refs
Browse files Browse the repository at this point in the history
  • Loading branch information
LeaVerou committed Feb 3, 2024
1 parent e4fb1f3 commit 89591d0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion plugins/resolution/plugin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Inspire from "../../src/../inspire.mjs";
import Inspire from "../../inspire.mjs";
import { $$ } from "../../src/bliss.js";

$$("[data-resolution]").forEach(element => {
let [width, height] = element.closest("[data-resolution]").dataset.resolution.split(/\s+/);
Expand Down
3 changes: 2 additions & 1 deletion plugins/slide-style/plugin.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import Inspire from "../../src/../inspire.mjs";
import Inspire from "../../inspire.mjs";
import { $$ } from "../../src/bliss.js";

Inspire.hooks.add("slidechange", env => {
$$(".slide:not(:target) style[data-slide]").forEach(style => style.disabled = true);
Expand Down

0 comments on commit 89591d0

Please sign in to comment.