diff --git a/CHANGES.md b/CHANGES.md index b454a551..c55e8324 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -5,6 +5,7 @@ * Fix cross-site scripting vulnerability in search output * Fix new choices being added to an existing poll at the wrong position * Fix errors in the client-side code filtering the referrers +* Correctly load and initialize Alpine.js ## 2024 January 7 diff --git a/code/Images/$Images.skin b/code/Images/$Images.skin index f40006b0..0cf1df2e 100644 --- a/code/Images/$Images.skin +++ b/code/Images/$Images.skin @@ -36,7 +36,7 @@ diff --git a/code/Site/$Site.skin b/code/Site/$Site.skin index 14fc1bc9..e4866503 100644 --- a/code/Site/$Site.skin +++ b/code/Site/$Site.skin @@ -214,7 +214,7 @@ <% #meta %> @@ -1135,7 +1135,7 @@ a.gs-title:hover { <% #referrer %> diff --git a/code/Skin/$Skin.skin b/code/Skin/$Skin.skin index f9ccc0d1..dd7fc0e7 100644 --- a/code/Skin/$Skin.skin +++ b/code/Skin/$Skin.skin @@ -37,7 +37,7 @@ <% #compare %> diff --git a/code/Skins/$Skins.skin b/code/Skins/$Skins.skin index 57b912e0..610bccde 100644 --- a/code/Skins/$Skins.skin +++ b/code/Skins/$Skins.skin @@ -30,8 +30,8 @@ background-color: #f2fae3; } - + diff --git a/code/Story/$Story.skin b/code/Story/$Story.skin index 590a4148..d0814165 100644 --- a/code/Story/$Story.skin +++ b/code/Story/$Story.skin @@ -62,7 +62,7 @@ else <% #editor %> diff --git a/code/Tag/$Tag.skin b/code/Tag/$Tag.skin index 338082d7..ae2858aa 100644 --- a/code/Tag/$Tag.skin +++ b/code/Tag/$Tag.skin @@ -23,35 +23,37 @@ <% #simple %> diff --git a/compat/Site/$Site.skin b/compat/Site/$Site.skin index 8766efd8..0a4ec2e9 100644 --- a/compat/Site/$Site.skin +++ b/compat/Site/$Site.skin @@ -15,14 +15,14 @@ diff --git a/tools/client/main.js b/tools/client/main.js index bcabd33e..5a62c9df 100644 --- a/tools/client/main.js +++ b/tools/client/main.js @@ -6,8 +6,6 @@ require('uikit/dist/js/components/form-password'); require('uikit/dist/js/components/tooltip'); require('uikit/dist/js/components/upload'); -Alpine.start(); - const Antville = window.Antville = {}; Antville.hash = require('js-md5/src/md5'); @@ -263,3 +261,5 @@ Antville.http = (method, url, options) => { httpClient.send(_data); return this; }; + +Alpine.start();