Użytkownik:Dominiol/monobook.js: Różnice pomiędzy wersjami
Z Nonsensopedii, polskiej encyklopedii humoru
Znacznik: edytor źródłowy |
|||
Linia 1: | Linia 1: | ||
importScriptPage('AjaxRC/code.js', 'dev'); |
|||
importScriptURI("http://nonsensopedia.wikia.com/wiki/U%C5%BCytkownik:Dominiol/AjaxRC.js?action=raw"); |
|||
ajaxPages = ['Specjalna:Ostatnie_zmiany']; |
ajaxPages = ['Specjalna:Ostatnie_zmiany']; |
||
var ajaxRefresh = 30000; |
var ajaxRefresh = 30000; |
||
//<pre><nowiki> |
|||
function sB() { |
|||
$('#ca-edit').prepend('<a id="ekst">Eksterminuj</a>'); |
|||
} |
|||
$(document).ready(sB); |
|||
function eksterminuj() { |
|||
$.ajax({ |
|||
url: mw.util.wikiScript( 'api' ), |
|||
data: { |
|||
format: 'json', |
|||
action: 'edit', |
|||
title: mw.config.get( 'wgPageName' ), |
|||
prependtext: '{{tre}}', |
|||
token: mw.user.tokens.get('editToken') |
|||
}, |
|||
dataType: 'json', |
|||
type: 'POST', |
|||
success: function( data ) { |
|||
window.location.reload(), |
|||
}, |
|||
error: function( xhr ) { |
|||
alert( 'Error: Request failed.' ); |
|||
} |
|||
}); |
|||
} |
|||
$('#ekst').click(eksterminuj); |
|||
//</nowiki></pre> |
Aktualna wersja na dzień 20:16, 7 cze 2015
importScriptPage('AjaxRC/code.js', 'dev');
ajaxPages = ['Specjalna:Ostatnie_zmiany'];
var ajaxRefresh = 30000;
//<pre><nowiki>
function sB() {
$('#ca-edit').prepend('<a id="ekst">Eksterminuj</a>');
}
$(document).ready(sB);
function eksterminuj() {
$.ajax({
url: mw.util.wikiScript( 'api' ),
data: {
format: 'json',
action: 'edit',
title: mw.config.get( 'wgPageName' ),
prependtext: '{{tre}}',
token: mw.user.tokens.get('editToken')
},
dataType: 'json',
type: 'POST',
success: function( data ) {
window.location.reload(),
},
error: function( xhr ) {
alert( 'Error: Request failed.' );
}
});
}
$('#ekst').click(eksterminuj);
//</nowiki></pre>