From 2f0ba66ab9ec494365c102efc447407628036f90 Mon Sep 17 00:00:00 2001 From: Darknet Villain Date: Fri, 9 Dec 2016 15:46:07 +0000 Subject: [PATCH] Fix IE bug with dirty hack --- js/app.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/js/app.js b/js/app.js index f318630..554f89b 100644 --- a/js/app.js +++ b/js/app.js @@ -23,7 +23,8 @@ function renderReleaseInfo(release) { }); if (win_asset.length > 0) { - dl_btn.text(i18next.t("header.dl-btn-windows")); + if (window.navigator.userAgent.indexOf("MSIE") === -1) // IE is fucked + dl_btn.text(i18next.t("header.dl-btn-windows")); dl_btn.attr("href", win_asset[0].browser_download_url); all_dls.show(); }