We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c049795 commit b870564Copy full SHA for b870564
examples/enhanced.html
@@ -452,7 +452,7 @@ <h2>10. Conditional Animation</h2>
452
453
<script type="module">
454
// Load the polyfill
455
- import { init } from "../packages/css-if-polyfill/dist/index.modern.js";
+ import { init, processCSSText } from "../packages/css-if-polyfill/dist/index.modern.js";
456
457
// Initialize polyfill with debug enabled
458
const polyfill = init({ debug: true });
@@ -481,7 +481,7 @@ <h2>10. Conditional Animation</h2>
481
482
console.log("Test CSS processing:");
483
console.log("Input:", testCSS);
484
- console.log("Output:", polyfill.processCSSText(testCSS));
+ console.log("Output:", processCSSText(testCSS));
485
</script>
486
</body>
487
</html>
0 commit comments