Content deleted Content added
allow this to run in Draft namespace (118) as requested by User:LittlePuppers and use mw.config.get |
set event handler below definition of event handler (JavaScript hoisting of variable declarations is bizarre and the previous code might be wrong, but I don't know) |
||
Line 10:
{
mw.loader.load("//en.wiktionary.org/w/index.php?title=User:Erutuon/styles/wikitext-cleanup.css&action=raw&ctype=text/css", "text/css");
if ( !$("#wikitext-cleanup-button-wrapper").length )▼
$("#editform").prepend('<div id="wikitext-cleanup-button-wrapper"></div>');▼
$("#wikitext-cleanup-button-wrapper")▼
.append(`<div id="footnote-cleanup" class="wikitext-cleanup-button">clean up footnotes</div>`);▼
$("#footnote-cleanup")▼
.click(cleanUpFootnotes);▼
Line 153 ⟶ 146:
);
};
▲ if ( !$("#wikitext-cleanup-button-wrapper").length )
▲ $("#editform").prepend('<div id="wikitext-cleanup-button-wrapper"></div>');
▲ $("#wikitext-cleanup-button-wrapper")
▲ .append(`<div id="footnote-cleanup" class="wikitext-cleanup-button">clean up footnotes</div>`);
▲ $("#footnote-cleanup")
▲ .click(cleanUpFootnotes);
}
|