ultimate-jekyll-manager 0.0.157 → 0.0.159

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.
@@ -164,6 +164,11 @@ export default function (Manager, options) {
164
164
  }
165
165
 
166
166
  function showExitPopup(overrides) {
167
+ // Check if any modal is already open - don't stack modals
168
+ if (document.querySelector('.modal.show')) {
169
+ return;
170
+ }
171
+
167
172
  // Deep merge overrides with config (without mutating original)
168
173
  const effectiveConfig = merge({}, config, overrides);
169
174
 
@@ -146,8 +146,10 @@ export default function (Manager, options) {
146
146
  function loadSrc(element, value) {
147
147
  const tagName = element.tagName.toLowerCase();
148
148
 
149
- // Add cache buster to URL
150
- value = addCacheBuster(value);
149
+ // Add cache buster to URL (skip for iframes - external embeds don't support it)
150
+ if (tagName !== 'iframe') {
151
+ value = addCacheBuster(value);
152
+ }
151
153
 
152
154
  // For images, test load first
153
155
  if (tagName === 'img') {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ultimate-jekyll-manager",
3
- "version": "0.0.157",
3
+ "version": "0.0.159",
4
4
  "description": "Ultimate Jekyll dependency manager",
5
5
  "main": "dist/index.js",
6
6
  "exports": {