Jump to content

MediaWiki:Gadget-NamespaceNotice.js: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
MZMcBride (talk | contribs)
specify some CSS to override mediawiki/skins/common/commonInterface.css
MZMcBride (talk | contribs)
let's try this
Line 1: Line 1:
/* Show a notice inside <div id="contentSub"></div> on pages in the Talk namespace */
/* Show a notice inside <div id="contentSub"></div> on pages in the Talk namespace */
if ( ( mw.config.get( 'wgNamespaceNumber' ) == 1 ) && ( mw.config.get( 'wgAction') == 'view' ) ) {
if ( ( mw.config.get( 'wgNamespaceNumber' ) == 1 ) &&
( mw.config.get( 'wgAction') == 'view' ) &&
( mw.config.get( 'wgUserName' ) ) {
var text = $.getJSON(
var text = $.getJSON(
wgScriptPath + '/api.php?',
wgScriptPath + '/api.php?',

Revision as of 01:44, 16 July 2012

/* Show a notice inside <div id="contentSub"></div> on pages in the Talk namespace */
if ( ( mw.config.get( 'wgNamespaceNumber' ) == 1 ) &&
     ( mw.config.get( 'wgAction') == 'view' ) &&
     ( mw.config.get( 'wgUserName' ) ) {
  var text = $.getJSON(
        wgScriptPath + '/api.php?',
        {
            action: 'parse',
            prop: 'text',
            page: 'Template:Contribute',
            format: 'json'
        },
        function( data ) {
            if ( data ) {
                var text = data.parse.text['*'];
                $('#contentSub').html(text).css({'margin':'1em 0', 'color':'#000'});
            }
        }
  )
}