Site Notice

hello, world

Difference between revisions of "MediaWiki:Common.js"

From Project-EPB Commons
([InPageEdit])
(Undo revision 174 by 机智的小鱼君 (talk))
Tag: Undo
Line 5: Line 5:
 
mw.loader.load('https://common.wjghj.cn/js/highlight');
 
mw.loader.load('https://common.wjghj.cn/js/highlight');
 
$(window).load(function(){
 
$(window).load(function(){
   $('.hljs, pre').each((block) => {
+
   document.querySelectorAll('.hljs, pre').forEach((block) => {
 
     hljs.highlightBlock(block);
 
     hljs.highlightBlock(block);
 
   });
 
   });
 
});
 
});

Revision as of 21:48, 25 September 2019

/* Any JavaScript here will be loaded for all users on every page load. */
mw.loader.load('https://wjghj.cn/index.php?title=MediaWiki:NotifyWhenCopy.js&action=raw&ctype=text/javascript');
mw.loader.load('https://common.wjghj.cn/js/toast');

mw.loader.load('https://common.wjghj.cn/js/highlight');
$(window).load(function(){
  document.querySelectorAll('.hljs, pre').forEach((block) => {
    hljs.highlightBlock(block);
  });
});