From 64ed6e96ee7132cb111268cc9fe4d8540d37f588 Mon Sep 17 00:00:00 2001 From: rugk Date: Wed, 16 Oct 2024 22:46:18 +0000 Subject: [PATCH] fix: load in WebKit again by loading jquery, base and deflate libs non-async'ly --- tpl/bootstrap.php | 6 +++--- tpl/bootstrap5.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/tpl/bootstrap.php b/tpl/bootstrap.php index 3cc2331c..a9306e43 100644 --- a/tpl/bootstrap.php +++ b/tpl/bootstrap.php @@ -42,7 +42,7 @@ if ($SYNTAXHIGHLIGHTING) : endif; ?> - _scriptTag('js/jquery-3.7.1.js', 'async'); ?> + _scriptTag('js/jquery-3.7.1.js', ''); ?> @@ -56,8 +56,8 @@ if ($ZEROBINCOMPATIBILITY) : endif; ?> _scriptTag('js/zlib-1.3.1.js', 'async'); ?> - _scriptTag('js/base-x-4.0.0.js', 'async'); ?> - _scriptTag('js/rawinflate-0.3.js', 'async'); ?> + _scriptTag('js/base-x-4.0.0.js', ''); ?> + _scriptTag('js/rawinflate-0.3.js', ''); ?> _scriptTag('js/bootstrap-3.4.1.js', 'defer'); ?> - _scriptTag('js/jquery-3.7.1.js', 'defer'); ?> + _scriptTag('js/jquery-3.7.1.js', ''); ?> @@ -39,8 +39,8 @@ if ($ZEROBINCOMPATIBILITY) : endif; ?> _scriptTag('js/zlib-1.3.1.js', 'async'); ?> - _scriptTag('js/base-x-4.0.0.js', 'async'); ?> - _scriptTag('js/rawinflate-0.3.js', 'async'); ?> + _scriptTag('js/base-x-4.0.0.js', ''); ?> + _scriptTag('js/rawinflate-0.3.js', ''); ?> _scriptTag('js/bootstrap-5.3.3.js', 'async'); ?> _scriptTag('js/dark-mode-switch.js', 'async'); ?>