Difference between revisions of "MediaWiki:Access.js"
Jump to navigation
Jump to search
Line 1: | Line 1: | ||
var $title = $( '.wikibase-title' ), | var $title = $( '.wikibase-title' ), | ||
var qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' ) | var qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' ) | ||
− | console.log("qqqqq" | + | console.log("qqqqq") |
+ | console.log(qID) | ||
var api = new mw.Api(); | var api = new mw.Api(); | ||
api.get( { | api.get( { |
Revision as of 00:18, 30 March 2019
var $title = $( '.wikibase-title' ),
var qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' )
console.log("qqqqq")
console.log(qID)
var api = new mw.Api();
api.get( {
action: 'expandtemplates',
text: '{{MailtoAccess|'+qId+'}}'
} ).done( function ( data ) {
mw.notify( $('<a href="'+data.expandtemplates["*"]+'"> do a SAR to this controller!</a>') , { autoHide: false } );
} );