ultimate-jekyll-manager 0.0.156 → 0.0.158
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
|
|