mirror of
https://github.com/valitydev/redash.git
synced 2024-11-06 17:15:17 +00:00
56d3be2248
* Prettier all the JS files * Add GitHub Action to autoformat code pushed to master * Fix eslint violation due to formatting. * Remove GitHub actions for styling * Add restyled.io config
7 lines
155 B
JavaScript
7 lines
155 B
JavaScript
if (
|
|
navigator.appVersion.match("Trident/") || // IE8-11
|
|
"ActiveXObject" in window // IE<11
|
|
) {
|
|
window.location.href = "/static/unsupported.html";
|
|
}
|