mirror of
https://github.com/eclipse-sailing-analytics/sailing-analytics.git
synced 2026-09-20 04:35:32 +00:00
41 lines
2.1 KiB
HTML
41 lines
2.1 KiB
HTML
<!doctype html>
|
|
<!-- The DOCTYPE declaration above will set the -->
|
|
<!-- browser's rendering engine into -->
|
|
<!-- "Standards Mode". Replacing this declaration -->
|
|
<!-- with a "Quirks Mode" doctype may lead to some -->
|
|
<!-- differences in layout. -->
|
|
|
|
<html manifest="com.sap.sailing.dashboards.gwt.RibDashboard/appcache.manifest">
|
|
<head>
|
|
<meta name="apple-mobile-web-app-capable" content="yes">
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<link rel="shortcut icon" type="image/x-icon" href="images/dashboardicon${clientConfigurationContext['whitelabeled']}.png" />
|
|
<link href='images/dashboardicon${clientConfigurationContext['whitelabeled']}.png' rel='apple-touch-icon'>
|
|
<link rel="stylesheet" type="text/css" href="/sailing-fontface-1.0.cache.css">
|
|
<title>Dashboard</title>
|
|
<script>${clientConfigurationContext['scriptForClientConfigurationContextToDocument']}</script>
|
|
<script type="text/javascript" src="js/jquery-3.6.0.min.js"></script>
|
|
<script type="text/javascript"
|
|
src="com.sap.sailing.dashboards.gwt.RibDashboard/com.sap.sailing.dashboards.gwt.RibDashboard.nocache.js"></script>
|
|
<!-- Disables scrolling whole website vertically over edge on apple browsers -->
|
|
<script type="text/javascript">
|
|
document.ontouchmove = function(event){
|
|
event.preventDefault();
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body style="background-color: #d3d3d3; overflow-y: hidden;">
|
|
<!-- OPTIONAL: include this if you want history support -->
|
|
<iframe src="javascript:''" id="__gwt_historyFrame" tabIndex='-1'
|
|
style="position: absolute; width: 0; height: 0; border: 0"></iframe>
|
|
<!-- RECOMMENDED if your web app will not function without JavaScript enabled -->
|
|
<noscript>
|
|
<div
|
|
style="width: 22em; position: absolute; left: 50%; margin-left: -11em; color: red; background-color: white; border: 1px solid red; padding: 4px; font-family: sans-serif">
|
|
Your web browser must have JavaScript enabled in order for this
|
|
application to display correctly.</div>
|
|
</noscript>
|
|
</body>
|
|
</html>
|