jeawin-astro 3.0.83 → 3.0.84
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
package/src/layouts/Layout.astro
CHANGED
|
@@ -259,7 +259,7 @@ if (page_type == "category") {
|
|
|
259
259
|
}}
|
|
260
260
|
>
|
|
261
261
|
a {
|
|
262
|
-
color: var(--
|
|
262
|
+
color: var(--themeColor);
|
|
263
263
|
}
|
|
264
264
|
a:hover {
|
|
265
265
|
text-decoration: underline;
|
|
@@ -275,11 +275,13 @@ if (page_type == "category") {
|
|
|
275
275
|
src="https://img.jeawincdn.com/resource/simple-scrollspy/tocbot.min.js"
|
|
276
276
|
async
|
|
277
277
|
defer></script>
|
|
278
|
-
<script
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
278
|
+
<script is:inline define:vars={{
|
|
279
|
+
SITE_LANGUAGE:siteinfo.language_id
|
|
280
|
+
}}>
|
|
281
|
+
const jeawinFormJs = document.createElement("script");
|
|
282
|
+
jeawinFormJs.src = "https://img.jeawincdn.com/resource/js/form.js?v=20250529";
|
|
283
|
+
document.body.append(jeawinFormJs);
|
|
284
|
+
</script>
|
|
283
285
|
<script
|
|
284
286
|
is:inline
|
|
285
287
|
src="https://img.jeawincdn.com/resource/js/lazysizes.min.js"
|