ultimate-jekyll-manager 0.0.112 → 0.0.113
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.
|
@@ -13,10 +13,8 @@ export default (Manager) => {
|
|
|
13
13
|
setupBillingToggle();
|
|
14
14
|
setupPlanButtons();
|
|
15
15
|
|
|
16
|
-
// Setup promo countdown
|
|
17
|
-
|
|
18
|
-
setupPromoCountdown();
|
|
19
|
-
}, 1000);
|
|
16
|
+
// Setup promo countdown (wait until mouse is not over nav)
|
|
17
|
+
waitForNavUnhover();
|
|
20
18
|
|
|
21
19
|
// Resolve after initialization
|
|
22
20
|
return resolve();
|
|
@@ -253,6 +251,31 @@ function trackEnterpriseContact() {
|
|
|
253
251
|
});
|
|
254
252
|
}
|
|
255
253
|
|
|
254
|
+
function waitForNavUnhover() {
|
|
255
|
+
function checkAndRun() {
|
|
256
|
+
const $nav = document.querySelector('nav');
|
|
257
|
+
|
|
258
|
+
if (!$nav) {
|
|
259
|
+
// If no nav element found, just run immediately
|
|
260
|
+
setupPromoCountdown();
|
|
261
|
+
return;
|
|
262
|
+
}
|
|
263
|
+
|
|
264
|
+
const isHovering = $nav.matches(':hover');
|
|
265
|
+
|
|
266
|
+
if (isHovering) {
|
|
267
|
+
// Mouse is over nav, restart timer
|
|
268
|
+
setTimeout(checkAndRun, 1000);
|
|
269
|
+
} else {
|
|
270
|
+
// Mouse is not over nav, safe to run
|
|
271
|
+
setupPromoCountdown();
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
// Always wait 1 second first, then check
|
|
276
|
+
setTimeout(checkAndRun, 1000);
|
|
277
|
+
}
|
|
278
|
+
|
|
256
279
|
function setupPromoCountdown() {
|
|
257
280
|
const $countdownEl = document.getElementById('pricing-promo-countdown');
|
|
258
281
|
const $promoTextEl = document.getElementById('pricing-promo-text');
|
|
@@ -68,12 +68,14 @@
|
|
|
68
68
|
.form-control,
|
|
69
69
|
.form-select {
|
|
70
70
|
border-radius: $classy-radius-lg;
|
|
71
|
-
border: 1px solid
|
|
71
|
+
border: 1px solid var(--bs-border-color);
|
|
72
|
+
background-color: var(--bs-body-bg);
|
|
72
73
|
transition: all 0.2s ease;
|
|
73
|
-
|
|
74
|
+
|
|
74
75
|
&:focus {
|
|
75
76
|
border-color: $primary;
|
|
76
77
|
box-shadow: 0 0 0 0.25rem rgba($primary, 0.25);
|
|
78
|
+
background-color: var(--bs-body-bg);
|
|
77
79
|
}
|
|
78
80
|
}
|
|
79
81
|
|
package/dist/index.js
CHANGED
|
@@ -102,7 +102,7 @@ class Manager {
|
|
|
102
102
|
// Wait for all modules to load
|
|
103
103
|
await Promise.all(modulePromises);
|
|
104
104
|
|
|
105
|
-
// Execute page modules
|
|
105
|
+
// Execute page-specific modules
|
|
106
106
|
for (const mod of modules) {
|
|
107
107
|
// Skip if module wasn't found
|
|
108
108
|
if (!mod?.default) {
|
|
@@ -112,12 +112,12 @@ class Manager {
|
|
|
112
112
|
// Execute the module function
|
|
113
113
|
try {
|
|
114
114
|
/* @dev-only:start */
|
|
115
|
-
console.log(`Page module #${mod.tag}
|
|
115
|
+
console.log(`Page-specific module loaded: #${mod.tag}/${pageModulePathFull}`);
|
|
116
116
|
/* @dev-only:end */
|
|
117
117
|
|
|
118
118
|
await mod.default(this, options);
|
|
119
119
|
} catch (e) {
|
|
120
|
-
console.error(`Page module #${mod.tag}
|
|
120
|
+
console.error(`Page-specific module error: #${mod.tag}/${pageModulePathFull}`, e);
|
|
121
121
|
break; // Stop execution if any module fails
|
|
122
122
|
}
|
|
123
123
|
}
|
package/firebase-debug.log
CHANGED
|
@@ -254,3 +254,59 @@
|
|
|
254
254
|
[debug] [2025-11-04T23:58:14.977Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
255
255
|
[debug] [2025-11-04T23:58:14.978Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
256
256
|
[debug] [2025-11-04T23:58:14.978Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
257
|
+
[debug] [2025-11-05T08:27:02.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
258
|
+
[debug] [2025-11-05T08:27:02.602Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
259
|
+
[debug] [2025-11-05T08:27:02.604Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
260
|
+
[debug] [2025-11-05T08:27:02.604Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
261
|
+
[debug] [2025-11-05T08:27:02.604Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
262
|
+
[debug] [2025-11-05T08:27:02.617Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
263
|
+
[debug] [2025-11-05T08:27:02.617Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
264
|
+
[debug] [2025-11-05T08:27:02.604Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
265
|
+
[debug] [2025-11-05T08:27:02.604Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
266
|
+
[debug] [2025-11-05T08:27:02.604Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
267
|
+
[debug] [2025-11-05T08:27:02.618Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
268
|
+
[debug] [2025-11-05T08:27:02.618Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
269
|
+
[debug] [2025-11-05T08:27:02.793Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
270
|
+
[debug] [2025-11-05T08:27:02.794Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
271
|
+
[debug] [2025-11-05T08:27:02.796Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
272
|
+
[debug] [2025-11-05T08:27:02.796Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
273
|
+
[debug] [2025-11-05T08:27:02.798Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
274
|
+
[debug] [2025-11-05T08:27:02.798Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
275
|
+
[debug] [2025-11-05T08:27:02.799Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
276
|
+
[debug] [2025-11-05T08:27:02.799Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
277
|
+
[debug] [2025-11-05T08:27:02.800Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
278
|
+
[debug] [2025-11-05T08:27:02.801Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
279
|
+
[debug] [2025-11-05T08:27:02.801Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
280
|
+
[debug] [2025-11-05T08:27:02.801Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
281
|
+
[debug] [2025-11-05T08:27:02.804Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
282
|
+
[debug] [2025-11-05T08:27:02.804Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
283
|
+
[debug] [2025-11-05T08:27:02.805Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
284
|
+
[debug] [2025-11-05T08:27:02.805Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
285
|
+
[debug] [2025-11-05T08:28:28.151Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
286
|
+
[debug] [2025-11-05T08:28:28.152Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
287
|
+
[debug] [2025-11-05T08:28:28.153Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
288
|
+
[debug] [2025-11-05T08:28:28.154Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
289
|
+
[debug] [2025-11-05T08:28:28.154Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
290
|
+
[debug] [2025-11-05T08:28:28.165Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
291
|
+
[debug] [2025-11-05T08:28:28.165Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
292
|
+
[debug] [2025-11-05T08:28:28.154Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
293
|
+
[debug] [2025-11-05T08:28:28.154Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
294
|
+
[debug] [2025-11-05T08:28:28.154Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
295
|
+
[debug] [2025-11-05T08:28:28.166Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
296
|
+
[debug] [2025-11-05T08:28:28.167Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
297
|
+
[debug] [2025-11-05T08:28:28.288Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
298
|
+
[debug] [2025-11-05T08:28:28.288Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
299
|
+
[debug] [2025-11-05T08:28:28.288Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
300
|
+
[debug] [2025-11-05T08:28:28.289Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
301
|
+
[debug] [2025-11-05T08:28:28.290Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
302
|
+
[debug] [2025-11-05T08:28:28.290Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
303
|
+
[debug] [2025-11-05T08:28:28.290Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
304
|
+
[debug] [2025-11-05T08:28:28.291Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
305
|
+
[debug] [2025-11-05T08:28:28.291Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
306
|
+
[debug] [2025-11-05T08:28:28.290Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
307
|
+
[debug] [2025-11-05T08:28:28.291Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
308
|
+
[debug] [2025-11-05T08:28:28.291Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
309
|
+
[debug] [2025-11-05T08:28:28.292Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
310
|
+
[debug] [2025-11-05T08:28:28.292Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|
|
311
|
+
[debug] [2025-11-05T08:28:28.293Z] > command requires scopes: ["email","openid","https://www.googleapis.com/auth/cloudplatformprojects.readonly","https://www.googleapis.com/auth/firebase","https://www.googleapis.com/auth/cloud-platform"]
|
|
312
|
+
[debug] [2025-11-05T08:28:28.293Z] > authorizing via signed-in user (ian.wiedenman@gmail.com)
|