Content deleted Content added
Writ Keeper (talk | contribs) fx |
Writ Keeper (talk | contribs) apparently this is bad now |
||
(15 intermediate revisions by 2 users not shown) | |||
Line 5:
if(/previewanddiff=true/.test(window.___location.href))
{
mw.loader.load('mediawiki.
$("#wikiPreview").
var
if(typeof wpSectionElement.attr("value") !== "undefined")
{
}
var mwApi = new mw.Api();
mwApi.post(diffData).done(function (response)
{
$("#ajaxDiff").append(response.query.pages[Object.keys(response.query.pages)[0]].revisions[0].diff["*"]);
});
}
var previewDiffButton = new OO.ui.ButtonInputWidget({label:'Show preview and changes', useInputTag: true, value: 'wpPreview', name: 'wpPreview'});▼
mw.loader.using('oojs-ui').then(function () {
previewDiffButton.setTitle("Show a preview of your changes, as well as a diff of what you changed");▼
▲ var previewDiffButton = new OO.ui.ButtonInputWidget({label:'Show preview and changes', useInputTag: true, value: 'wpPreview', name: 'wpPreview', type:"submit", accessKey:"o", tabIndex: ($("#wpDiff").prop("tabIndex") + 1)});
▲ previewDiffButton.setTitle("Show a preview of your changes, as well as a diff of what you changed");
$("#wpDiffWidget").after(previewDiffButton.$element);▼
previewDiffButton.$element.children("input").click(function()▼
▲ $("#wpDiffWidget").after(previewDiffButton.$element);
▲ {
▲ previewDiffButton.$element.children("input").click(function()
var formAction = $("#editform").attr("action");yrdy▼
{
$("#editform").attr("action", formAction+"&previewanddiff=true");▼
▲ $("#editform").attr("action", formAction+"&previewanddiff=true");
});
});
}
|