MediaWiki
Gadget-editButton.js
From Dogcraft Wiki
Note: After publishing, you may have to bypass your browser's cache to see the changes.
- Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (โ-R on a Mac)
- Google Chrome: Press Ctrl-Shift-R (โ-Shift-R on a Mac)
- Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
- Opera: Press Ctrl-F5.
$( function () {
var wikiEdit = document.createElement("a");
wikiEdit.setAttribute("id", "wikiEdit");
wikiEdit.setAttribute("class", "button");
var wikiEditButton = document.createElement("button");
wikiEdit.appendChild(wikiEditButton);
var wikiEditButtonIcon = document.createElement("i");
wikiEditButtonIcon.setAttribute("class", "fas fa-pencil");
wikiEditButton.appendChild(wikiEditButtonIcon);
var wikiEditButtonLabel = document.createElement("span");
wikiEditButtonLabel.innerText = " Edit";
wikiEditButton.appendChild(wikiEditButtonLabel);
document.getElementById("wikiActions").before(wikiEdit);
})
This page was last modified on 6 September 2024, at 00:28. (2 months ago)