@patch-adams/core 1.5.5 → 1.5.6

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/dist/cli.cjs CHANGED
@@ -5165,15 +5165,6 @@ function generateJsAfterLoader(options) {
5165
5165
  window.pa_patcher.loaded.jsAfter = true;
5166
5166
  }
5167
5167
  console.log('[PA-Patcher] Loading complete, content revealed');
5168
-
5169
- // Add visual badge to indicate patching is active
5170
- var badge = document.createElement('div');
5171
- badge.setAttribute('data-pa', 'badge');
5172
- badge.style.cssText = 'position:fixed;bottom:10px;right:10px;background:#4CAF50;color:white;padding:4px 8px;border-radius:4px;font-size:11px;font-family:sans-serif;z-index:999999;opacity:0.8;cursor:pointer;';
5173
- badge.textContent = 'PA';
5174
- badge.title = 'PA-Patcher Active';
5175
- badge.onclick = function() { badge.style.display = 'none'; };
5176
- document.body.appendChild(badge);
5177
5168
  }
5178
5169
 
5179
5170
  function loadJSWithFallback() {