mirror of
https://codeberg.org/vlw/victorwesterlund.com.git
synced 2025-09-13 19:13:42 +02:00
- NETWATCH 404 pages removed - time for something new - Compartmentalized CSS fonts and JS script files - Streamlined cache manifest for ServiceWorker - Added AVIF images, replaced PNG fallback with WebP fallback - Changed favicon color
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);
|
|
}
|