MediaWiki:Common.js: Difference between revisions
Jump to navigation
Jump to search
Admin 4 bbp (talk | contribs) No edit summary |
Admin 4 bbp (talk | contribs) No edit summary |
||
Line 11: | Line 11: | ||
console.log("checking to redirect"); | console.log("checking to redirect"); | ||
if (window.location.protocol === 'http:') { | if (window.location.protocol === 'http:' && !logoutLink) { | ||
console.log("redirect to ssl"); | console.log("redirect to ssl"); | ||
window.location.href = window.location.href.replace('http://', 'https://'); | window.location.href = window.location.href.replace('http://', 'https://'); | ||
} | |||
else if (window.location.protocol === 'http:' && logoutLink){ | |||
console.log("redirect to http"); | |||
window.location.href = window.location.href.replace('https://', 'http://'); | |||
} | } |
Revision as of 21:20, 21 November 2024
/* Any JavaScript here will be loaded for all users on every page load. */ var logoutLink = document.querySelector('a[href*="Special:UserLogout"]'); if (logoutLink) { console.log('Log out link found!'); } else { console.log('Log out link not found.'); } console.log("checking to redirect"); if (window.location.protocol === 'http:' && !logoutLink) { console.log("redirect to ssl"); window.location.href = window.location.href.replace('http://', 'https://'); } else if (window.location.protocol === 'http:' && logoutLink){ console.log("redirect to http"); window.location.href = window.location.href.replace('https://', 'http://'); }