mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
Renamed the folder `public/` to make it usable with GH Pages only non-root directory.
7 lines
238 B
JavaScript
7 lines
238 B
JavaScript
// Promote IE to Edge
|
|
if(/MSIE \d|Trident.*rv:/.test(navigator.userAgent)) {
|
|
window.location = 'microsoft-edge:' + window.location;
|
|
setTimeout(function() {
|
|
window.location = 'https://go.microsoft.com/fwlink/?linkid=2135547';
|
|
},1);
|
|
}
|