User:Locke/common.js: Difference between revisions

Want an adless experience? Log in or Create an account.
no edit summary
No edit summary
No edit summary
Line 2: Line 2:
     this.loadData = function( subpage ) {
     this.loadData = function( subpage ) {
         mw.loader.using( 'mediawiki.api', function () {
         mw.loader.using( 'mediawiki.api', function () {
console.log( "hmm" );
             (new mw.Api()).ajax( {
             (new mw.Api()).ajax( {
                 action: 'parse',
                 action: 'parse',
Line 10: Line 9:
             } ).done ( function ( data ) {
             } ).done ( function ( data ) {
                 $('#' + target).empty();
                 $('#' + target).empty();
                $('#' + target).append( 'Replaced.' );
                 $('#' + target).append( data['parse']['text'] );
                 $('#' + target).append( data['parse']['text'] );
                 console.log( data['parse']['text'] );
                 console.log( data['parse']['text'] );