Browse Source

Fix IE bug with dirty hack

pull/3/head
Darknet Villain 8 years ago committed by GitHub
parent
commit
2f0ba66ab9
  1. 3
      js/app.js

3
js/app.js

@ -23,7 +23,8 @@ function renderReleaseInfo(release) {
}); });
if (win_asset.length > 0) { 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); dl_btn.attr("href", win_asset[0].browser_download_url);
all_dls.show(); all_dls.show();
} }

Loading…
Cancel
Save