MediaWiki:Common.js
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.
/* Any JavaScript here will be loaded for all users on every page load. */
if (window.location.href.indexOf("ElectronPdf&page") > -1) {
//alert("your url contains the name franky");
var page_ID = document.getElementsByClassName("mw-electronpdfservice-selection-label-desc");
//console.log(page_ID)
var page_url = (page_ID[0].innerText.substring(0, page_ID[0].innerText.length-4));
var downloadBtn = document.getElementsByClassName("oo-ui-inputWidget-input oo-ui-buttonElement-button");
$(downloadBtn).replaceWith("<a href='http://okcstwik00:3000/pdf?accessKey=secret&url=http://wikitest.grooper.com/index.php?title="+ page_url +"&pageSize=Letter&landscape=true' class= 'oo-ui-inputWidget-input oo-ui-buttonElement-button'>Download</a>")
//$("span").first().replaceWith("<a href='http://okcstwik00:3000/pdf?accessKey=secret&url=http://wikitest.grooper.com/index.php?title="+ page_url +"&pageSize=Letter&landscape=true' class= 'oo-ui-inputWidget-input oo-ui-buttonElement-button'>Download</a>")
}