Skip to content

Commit

Permalink
fix: IntersectionObserver polyfill
Browse files Browse the repository at this point in the history
  • Loading branch information
Tokinx authored Nov 27, 2023
1 parent a491d36 commit 703d46e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion static/script.js
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ window.$vm = new Vue({
window._exReload && _exReload();

// IntersectionObserver polyfill
if ( !!window.IntersectionObserver ) {
if ( !window.IntersectionObserver ) {
const script = document.createElement('script');
script.src = "https://cdn.jsdelivr.net/npm/[email protected]/intersection-observer.min.js";
document.body.appendChild(script);
Expand Down
2 changes: 1 addition & 1 deletion style.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
Description: Simple, smooth, data-driven, responsive WordPress theme
Author: Tokin
Author URI: https://biji.io
Version: 0.7.39
Version: 0.8.0
Tested up to: 5.9.3
Requires at least: 5.8
Requires PHP: 7.0
Expand Down

0 comments on commit 703d46e

Please sign in to comment.