MediaWiki:Gadget-ProveIt.js: Perbedaan antara revisi
Konten dihapus Konten ditambahkan
Sophivorus (bicara | kontrib) Update to latest version |
|||
Baris 3:
* Documentation at https://commons.wikimedia.org/wiki/Help:Gadget-ProveIt
*
* The gadget code is loaded directly from Wikimedia Commons
*
* and
*/
// Only load on
var namespace = mw.config.get( 'wgNamespaceNumber' );
if ( namespace === 0 || namespace === 2 ) {
// Only load on wikitext pages (and not in common.js or common.css, for example)
var
if (
// Only load
mw.hook( 'wikipage.editform' ).add( loadProveIt );
mw.hook( 've.activationComplete' ).add( function () {
$( '#proveit' ).remove();
if ( ve.init.target.getSurface().getMode() === 'source' ) {
loadProveIt();
mw.hook( 've.deactivationComplete' ).add( function () {
$( '#proveit' ).remove();
}▼
}
▲ $( function () {
▲ mw.config.set({
▲ 'proveit-tag': 'suntingan ProveIt', // Revision tag created at Special:Tags
▲ 'proveit-summary': 'Referensi disunting menggunakan ProveIt', // Automatic edit summary
▲ 'proveit-templates': [ // These templates should have their TemplateData defined
▲ 'Templat:Cite book',
});
▲ 'Templat:Cite encyclopedia',
mw.loader.load( 'https://commons.wikimedia.org/w/index.php?title=MediaWiki:Gadget-ProveIt2.js&action=raw&ctype=text/javascript' );
▲ 'Templat:Cite journal',
▲ 'Templat:Cite report',
▲ 'Templat:Cite web'
▲ });
▲ mw.loader.load( '//commons.wikimedia.org/w/load.php?modules=ext.gadget.ProveIt&only=styles', 'text/css' );
▲ }
▲ } );
▲ }
▲ }
}
|