Difference between revisions of "MediaWiki:Access.js"

From Wikibase Personal data
Jump to navigation Jump to search
Line 6: Line 6:
 
     text: '{{MailtoAccess|Q101}}'
 
     text: '{{MailtoAccess|Q101}}'
 
} ).done( function ( data ) {
 
} ).done( function ( data ) {
     console.log( data.expandtemplates );
+
     mw.notify( data.expandtemplates );
 
} );
 
} );
  
  
 
mw.notify( "hello", { autoHide: false } );
 
mw.notify( "hello", { autoHide: false } );

Revision as of 23:53, 29 March 2019

var qId = "Q101"

var api = new mw.Api();
api.get( {
    action: 'expandtemplates',
    text: '{{MailtoAccess|Q101}}'
} ).done( function ( data ) {
    mw.notify( data.expandtemplates );
} );


mw.notify( "hello", { autoHide: false } );