Page MenuHomePhabricator
Paste P7023

https://commons.wikimedia.org/wiki/User:The_Photographer/QICvote.js
ActivePublic

Authored by matmarex on Apr 22 2018, 1:40 AM.
api.editSection( mw.config.get('wgPageName'), section, function ( params ) {
console.log(params);
api.postWithToken({
action: 'edit',
title: title,
text: params.content,
formatversion: '2',
section: section,
// Protect against errors and conflicts
assert: mw.user.isAnon() ? undefined : 'user',
nocreate: true
} );
} )