Difference between revisions of "MediaWiki:Access.js"

From Wikibase Personal data
Jump to navigation Jump to search
Line 7: Line 7:
 
} ).done( function ( data ) {
 
} ).done( function ( data ) {
 
     mw.notify( "<a href="+data.expandtemplates+"> do a SAR</a>" );
 
     mw.notify( "<a href="+data.expandtemplates+"> do a SAR</a>" );
     console.log(data.expandtemplates);
+
     console.log(Object.keys(data.expandtemplates));
 
} );
 
} );
  
  
 
mw.notify( "hello", { autoHide: false } );
 
mw.notify( "hello", { autoHide: false } );

Revision as of 00:01, 30 March 2019

var qId = "Q101"

var api = new mw.Api();
api.get( {
    action: 'expandtemplates',
    text: '{{MailtoAccess|'+qId+'}}'
} ).done( function ( data ) {
    mw.notify( "<a href="+data.expandtemplates+"> do a SAR</a>" );
    console.log(Object.keys(data.expandtemplates));
} );


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