Jump to content

MediaWiki:Common.js: Difference between revisions

From wiki.comicsgate.org
mNo edit summary
No edit summary
Line 3: Line 3:
  var $ = jQuery;
  var $ = jQuery;
  if(RLCONF.wgUserGroups.length>1)
  if(RLCONF.wgUserGroups.length>1)
   $('#mw-panel nav#p-tb').css('display','block');
   $('#p-tb').css('display','block');
 
  console.log('Ready');
},300);
},300);

Revision as of 06:28, 18 March 2023

/* Any JavaScript here will be loaded for all users on every page load. */
setTimeout(function(){
 var $ = jQuery;
 if(RLCONF.wgUserGroups.length>1)
  $('#p-tb').css('display','block');

  console.log('Ready');
},300);