MediaWiki:Common.js: Difference between revisions
(Created page with '→Any JavaScript here will be loaded for all users on every page load.: if (wgPageName == "Special:Search") //scripts specific to Special:Search { importScript("MediaWiki...') |
Nikerabbit (talk | contribs) No edit summary |
||
(One intermediate revision by the same user not shown) | |||
Line 5: | Line 5: | ||
importScript("MediaWiki:Common.js/search.js") | importScript("MediaWiki:Common.js/search.js") | ||
} | } | ||
// Hide Translation Tool if not a translators | |||
$( document ).ready( function() { | |||
if ( !wgUserGroups || wgUserGroups.join(' ').indexOf('translator') === -1 ) $( '#n-ub-trans-tool' ).hide(); | |||
}); |
Latest revision as of 11:10, 2 June 2011
/* Any JavaScript here will be loaded for all users on every page load. */
if (wgPageName == "Special:Search") //scripts specific to Special:Search
{
importScript("MediaWiki:Common.js/search.js")
}
// Hide Translation Tool if not a translators
$( document ).ready( function() {
if ( !wgUserGroups || wgUserGroups.join(' ').indexOf('translator') === -1 ) $( '#n-ub-trans-tool' ).hide();
});