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() { | |
/* --- Intelligent Writing Suite Bookmarklet --- */ | |
/* Version 3.9 - Correction Dialog Workflow & UI Polish */ | |
// Prevent re-injection if the script is already running on the page | |
if (document.getElementById('iws-bubble')) { | |
const panel = document.getElementById('iws-panel-container'); | |
panel.style.display = panel.style.display === 'none' ? 'block' : 'none'; | |
return; | |
} |