Jump to content

User:Anne drew/WatchingIndicator.js

From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by Anne drew (talk | contribs) at 00:10, 2 September 2022 (whoops šŸ˜…). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
Note: After saving, you have to bypass your browser's cache to see the changes. Google Chrome, Firefox, Microsoft Edge and Safari: Hold down the ⇧ Shift key and click the Reload toolbar button. For details and instructions about other browsers, see Wikipedia:Bypass your cache.
(function () {
	let saveButton = document.getElementById('wpSave');
	if (saveButton) {
		saveButton.onmousedown = function(event) {
			let watchBox = document.getElementById("wpWatchthis");
			let textBox = document.getElementById('wpTextbox1');
			if (textBox && watchBox) {
			    let watching = document.getElementById("ca-unwatch") || watchBox.checked ? "watching this page'>ā˜…" : "not watching this page'>ā˜†";
			    let text = textBox.value;
			    if (text.search(/````/g) > -1) {
			        if (confirm("Replace ```` with signature and watching indicator?") && ((text.match(/````/g) || []).length == 1 || confirm("Multiple instances found. Continue?")))
			            textBox.value = text.replace(/````/g, "{{subst:a|b}}3~}} <span style='color:#09F' title='I’m "+ watching + "</span> {{subst:a|b}}5~}}");
			    }
			}
		}
	}
})();