Update new panel system (#330)

This commit is contained in:
Pascal Vizeli 2018-01-26 14:07:22 +01:00 committed by GitHub
parent 04f5ee0a80
commit 1d5d2dc731
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 116 additions and 1 deletions

File diff suppressed because one or more lines are too long

Binary file not shown.

View File

@ -0,0 +1,37 @@
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Hass.io</title>
<meta name='viewport' content='width=device-width, user-scalable=no'>
<style>
body {
height: 100vh;
margin: 0;
padding: 0;
}
</style>
</head>
<body>
<hassio-app></hassio-app>
<script>
function addScript(src) {
var e = document.createElement('script');
e.src = src;
document.head.appendChild(e);
}
if (!window.parent.HASS_DEV) {
addScript('/frontend_es5/custom-elements-es5-adapter.js');
}
var webComponentsSupported = (
'customElements' in window &&
'import' in document.createElement('link') &&
'content' in document.createElement('template'));
if (!webComponentsSupported) {
addScript('/static/webcomponents-lite.js');
}
</script>
<link rel='import' href='./hassio-app.html'>
<link rel='import' href='/static/mdi.html' async>
</body>
</html>

Binary file not shown.

@ -1 +1 @@
Subproject commit ea16ebd4f0fe90ef3c4623875ddc0b53f79ce3ae
Subproject commit c3e35a27bad1a40ce1a12a78e91209f349b9f9c8