Skip to content

Commit c98d800

Browse files
committed
refactor: corrected JS path
1 parent 18b297d commit c98d800

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/advanced.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ <h2>9. Logical Properties</h2>
363363

364364
<script type="module">
365365
// Load the polyfill
366-
import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
366+
import { init } from "../dist/index.modern.js";
367367

368368
// Initialize polyfill
369369
const polyfill = init({ debug: true });

examples/basic-examples.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -276,7 +276,7 @@ <h3>6. Manual CSS Processing</h3>
276276
</div>
277277

278278
<script type="module">
279-
import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
279+
import { init } from "../dist/index.modern.js";
280280

281281
// Initialize the polyfill
282282
init(); // Update status indicator

examples/enhanced.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -452,7 +452,7 @@ <h2>10. Conditional Animation</h2>
452452

453453
<script type="module">
454454
// Load the polyfill
455-
import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
455+
import { init } from "../dist/index.modern.js";
456456

457457
// Initialize polyfill with debug enabled
458458
const polyfill = init({ debug: true });

examples/media-query-tracking.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ <h2>How it works</h2>
115115

116116
<script type="module">
117117
// Load the polyfill
118-
import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
118+
import { init } from "../dist/index.modern.js";
119119

120120
// Enable debug logging to see what's happening
121121
init({ debug: true });

examples/multiple-conditions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -376,7 +376,7 @@ <h2>7. Accessibility-Aware Animations</h2>
376376
</div>
377377

378378
<script type="module">
379-
import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
379+
import { init } from "../dist/index.modern.js";
380380

381381
// Initialize the polyfill
382382
init(); // Control functions

test/performance/benchmark.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<div class="test-element-5">Test 5</div>
4646
<div class="test-complex">Complex Test</div>
4747

48-
<script src="../../packages/css-if-polyfill/dist/index.umd.js"></script>
48+
<script src="../../dist/index.umd.js"></script>
4949
<script>
5050
console.log("Script starting...");
5151

0 commit comments

Comments
 (0)