Content deleted Content added
No edit summary |
m Maintenance: Replacing addPortletLink() with mw.util.addPortletLink() (mw:ResourceLoader/Migration_guide_(users)#addPortletLink) |
||
(18 intermediate revisions by 2 users not shown) | |||
Line 1:
function unverified() {▼
▲function unverified() {
// Find the edit box
var txt = document.editform.wpTextbox1;
// The tag to be included is an unverified image template
var tag = '
// If the edit box doesn't already have
if (txt.value.indexOf(tag) == -1) {
Line 24 ⟶ 17:
// Press the Save page button
document.editform.
}
// If the tag was already there, turn the tab background red to indicate
// that the script is functioning properly, but that there is no action
// to do. This doesn't interrupt the user's work like an alert() would.
else {
document.getElementById('ca-unverified').firstChild.style.backgroundColor = "#ff4444";
document.getElementById('ca-unverified').style.backgroundColor = "#ff4444";
}
}
// Create a tab that calls this function when pressed
if(document.title.indexOf("Editing Image:") == 0) {
}
});
|