Content deleted Content added
DemonDays64 (talk | contribs) Change message. There's a link, people can figure it out Tags: Mobile edit Mobile web edit Advanced mobile edit |
DemonDays64 (talk | contribs) Minor reorganization |
||
Line 13:
editPage();
});
function runRegex(regex, thingToRegex) {
modifiedPage =
}
Line 22 ⟶ 23:
replace: replace
};
runRegex(regexObject, modifiedPage);
}
function doEdit() {
document.editform.wpTextbox1.value = modifiedPage;
}
function setEditSummary(summary, isMinor) {
document.editform.wpMinoredit.checked = isMinor;
Line 39 ⟶ 42:
}
}
function showDiff() {
if(typeof doaction !== 'undefined') doaction("diff");
}
function editPage() {
pageBeforeEdit = document.editform.wpTextbox1.value;
Line 52 ⟶ 57:
showDiff();
}
});
});
|