appscms-tools-theme 5.0.2 → 5.0.4
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.
- checksums.yaml +4 -4
- data/assets/.DS_Store +0 -0
- data/assets/js/appscms-theme.js +9 -11
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 329399aa880e5ab59e7ae1ff1ed64c3e858a4313375d9da06002411e977a05e6
|
4
|
+
data.tar.gz: abbd1ea120f2c3202406a0b4a05f4475dddb442750080a1eeccd13e0b3f70410
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80cdaa1f9866ab2f630e73a723061f3b27c50312fa5d2309570a4aa0a83a7d1b5158ec46bb8516d9d2652cf45153bc3667c182858a0d3041dc146a26aa7e1981
|
7
|
+
data.tar.gz: 488571a0b4732bac139a11f513493bd25eb08c17b426492865b29bac561ae519f7ecf3f12edfcb7bb15c58737f0211156a9ba3ca8e8e6b27414a6c3328bf8f7a
|
data/assets/.DS_Store
CHANGED
Binary file
|
data/assets/js/appscms-theme.js
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
---
|
2
|
+
---
|
1
3
|
console.log(document.querySelectorAll('*').length);
|
2
4
|
|
3
5
|
if ("{{ site.safeui }}"==="true") {
|
@@ -155,22 +157,18 @@ document.addEventListener("DOMContentLoaded", function() {
|
|
155
157
|
// Check if the button exists
|
156
158
|
const processingBtn = document.getElementById('processing-btn');
|
157
159
|
const buttonLoader = document.querySelector('.button-loader');
|
158
|
-
|
159
160
|
if (processingBtn && buttonLoader) {
|
160
|
-
|
161
|
-
|
162
|
-
// Use requestAnimationFrame for visual changes
|
161
|
+
processingBtn.addEventListener('click', (event) => {
|
162
|
+
buttonLoader.style.display = 'block';
|
163
163
|
requestAnimationFrame(() => {
|
164
|
-
|
164
|
+
requestAnimationFrame(() => {
|
165
|
+
history.back();
|
166
|
+
});
|
165
167
|
});
|
166
|
-
|
167
|
-
// Use setTimeout to defer non-critical operations
|
168
|
-
setTimeout(() => {
|
169
|
-
history.back();
|
170
|
-
}, 0);
|
171
168
|
}, { passive: true });
|
172
169
|
}
|
173
170
|
|
171
|
+
|
174
172
|
// if ("{{ site.navigationSearch }}" === "true") {
|
175
173
|
// // Fetch data directly from alllinks.json
|
176
174
|
// fetch("/alllinks.json")
|
@@ -458,4 +456,4 @@ if ("{{ site.navigationSearch }}" === "true") {
|
|
458
456
|
|
459
457
|
// Initial check to hide buttons if necessary
|
460
458
|
updateScrollButtons();
|
461
|
-
})
|
459
|
+
});
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: appscms-tools-theme
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- vivek-appscms
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jekyll
|