Difference between revisions of "MediaWiki:PopupMenu.js"
Jump to navigation
Jump to search
(8 intermediate revisions by the same user not shown) | |||
Line 1: | Line 1: | ||
// License: GPL | // License: GPL | ||
− | + | ||
var $title = $( '.wikibase-title' ), | var $title = $( '.wikibase-title' ), | ||
qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' ); | qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' ); | ||
Line 8: | Line 8: | ||
api.get( { | api.get( { | ||
action: 'expandtemplates', | action: 'expandtemplates', | ||
− | text: '{{ | + | text: '{{PopupMenu|qID='+qId+'}}' |
} ).done( function ( data ) { | } ).done( function ( data ) { | ||
− | var expanded = | + | var expanded = data.expandtemplates["*"] |
− | + | ||
mw.notify( expanded , { autoHide: false } ); | mw.notify( expanded , { autoHide: false } ); | ||
} ); | } ); |
Latest revision as of 06:01, 25 September 2019
// License: GPL
var $title = $( '.wikibase-title' ),
qId = $title.find( '.wikibase-title-id' ).text().replace( /[()]/g, '' );
var api = new mw.Api();
api.get( {
action: 'expandtemplates',
text: '{{PopupMenu|qID='+qId+'}}'
} ).done( function ( data ) {
var expanded = data.expandtemplates["*"]
mw.notify( expanded , { autoHide: false } );
} );