This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| (function () { | |
| var SHOW_POPUP = true; // ← set to false to completely disable (nothing added to DOM) | |
| if (!SHOW_POPUP) return; | |
| // 1. Load Bootstrap CSS via CDN | |
| if (!document.querySelector('link[href*="bootstrap"]')) { | |
| var link = document.createElement("link"); | |
| link.rel = "stylesheet"; | |
| link.href = | |
| "https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css"; |