mirror of
https://github.com/valitydev/redash.git
synced 2024-11-07 01:25:16 +00:00
b5d97e25b7
* Browser support config * Removed some offending code * Added unsupported html page and redirect for IE * Typo in regex * Made html page static * Added redirect script to multi_org * Moved static html page to client/app
32 lines
941 B
HTML
32 lines
941 B
HTML
<!DOCTYPE html>
|
|
<html ng-app="app" ng-strict-di>
|
|
<head lang="en">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta charset="UTF-8">
|
|
<base href="{{base_href}}">
|
|
<title>Redash</title>
|
|
<script>
|
|
function onIE() {
|
|
window.location.href = '/static/unsupported';
|
|
}
|
|
if (
|
|
navigator.userAgent.match('MSIE') || // IE10
|
|
navigator.appVersion.match('Trident/') // IE11
|
|
){
|
|
onIE();
|
|
}
|
|
</script>
|
|
<!--[if IE]><script>onIE()</script><![endif]-->
|
|
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/static/images/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="96x96" href="/static/images/favicon-96x96.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/static/images/favicon-16x16.png">
|
|
</head>
|
|
|
|
<body ng-class="bodyClass">
|
|
<section>
|
|
<app-view></app-view>
|
|
</section>
|
|
</body>
|
|
</html>
|