MediaWiki:Vector.js

Revision as of 16:40, 25 October 2019 by Matt Pijoan (talk | contribs)
Jump to navigation Jump to search

Note: After publishing, you may have to bypass your browser's cache to see the changes.

  • Firefox / Safari: Hold Shift while clicking Reload, or press either Ctrl-F5 or Ctrl-R (⌘-R on a Mac)
  • Google Chrome: Press Ctrl-Shift-R (⌘-Shift-R on a Mac)
  • Internet Explorer / Edge: Hold Ctrl while clicking Refresh, or press Ctrl-F5
  • Opera: Press Ctrl-F5.
$(document).ready(function(){ 

function getCurentFileName(){
    var pagePathName= window.location.pathname;
    return pagePathName.substring(pagePathName.lastIndexOf("/") + 1);
}

if(getCurrentFileName() === "Textbook_of_clinical_trials"){
$("#wikidocNav").prepend("<p><b>Study Tools</b><a href='https://www.wikidoc.org/index.php/GFR'>GFR calculation</a>|<a href='https://www.wikidoc.org/index.php/TIMI_risk_score'>TIMI Risk Score</a>|<a href='https://www.wikidoc.org/index.php/The_GRACE_risk_score'>Grace Risk Score</a></p>");
}








});