User:FlyingRagnar/vector.js: Difference between revisions

From Dragon Quest Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 10: Line 10:
   //$( "#tabs" ).tabs();
   //$( "#tabs" ).tabs();
    
    
/**
 
* Action link: Purge (Action menu)
*
* @source: http://www.mediawiki.org/wiki/Snippets/Purge_action
* @rev: 5
*/
$(document).ready( function() {
     if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
     if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
         mw.util.addPortletLink(
         mw.util.addPortletLink(
Line 27: Line 21:
         );
         );
     }
     }
} );
      
      
   
   
} );
} );

Revision as of 16:26, 19 October 2011

// install [[Wikipedia:User:Cacycle/wikEd]] in-browser text editor
document.write('<script type="text/javascript" src="'
+ 'http://en.wikipedia.org/w/index.php?title=User:Cacycle/wikEd.js'
+ '&action=raw&ctype=text/javascript"></' + 'script>');


// Anything in this function wrapper will be executed when the page is ready for action
jQuery( document ).ready( function( $ ) {
 
  //$( "#tabs" ).tabs();
  

    if ( !$( '#ca-purge' ).length && mw.config.get( 'wgIsArticle' ) ) {
        mw.util.addPortletLink(
            'p-cactions',
            mw.util.wikiScript() + '?' + $.param({ title: mw.config.get( 'wgPageName' ), action: 'purge' }),
            mw.config.get( 'skin' ) == 'vector' ? 'Purge' : '*',
            'ca-purge',
            'Purge the server cache of this page',
            '*'
        );
    }
     
 
} );