MediaWiki:Common.js: Difference between revisions

From Halachipedia
(Replaced content with "→‎Any JavaScript here will be loaded for all users on every page load.: var linker = document.createElement('script'); linker.setAttribute('type','text/javascript'); li...")
No edit summary
Line 8: Line 8:
function calllinker(){
function calllinker(){
   sefaria.link();
   sefaria.link();
}
if ( mw.config.get( 'wgPageName' ) === 'Introduction_to_Hilchot_Niddah' ) {
    window.alert("This page is specifically for married individuals. If you came to this page by accident please click the back button.");
}
}

Revision as of 03:36, 31 October 2016

/* Any JavaScript here will be loaded for all users on every page load. */
var linker = document.createElement('script');
linker.setAttribute('type','text/javascript');
linker.setAttribute('charset','utf-8');
linker.setAttribute('src','http://sefaria.org/linker.js');
document.head.appendChild(linker);
window.onload=calllinker;
function calllinker(){
   sefaria.link();
}
if ( mw.config.get( 'wgPageName' ) === 'Introduction_to_Hilchot_Niddah' ) {
    window.alert("This page is specifically for married individuals. If you came to this page by accident please click the back button.");
}