MediaWiki:Gadget-NamespaceNotice.js: Difference between revisions

From Wikimedia Foundation Governance Wiki
Content deleted Content added
MZMcBride (talk | contribs)
once more...
outdated, let us use MediaWiki:talkpageheader
 
(One intermediate revision by one other user not shown)
Line 1: Line 1:
/* 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' ) != 'null' ) ) {
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'});
}
}
)
}

Latest revision as of 19:10, 15 July 2014