Frontend now build on top of home-assistant-js

This commit is contained in:
Paulus Schoutsen 2015-02-03 23:16:53 -08:00
parent fbae2ef725
commit 115be859b6
36 changed files with 467 additions and 829 deletions

View file

@ -58,7 +58,7 @@ def _handle_get_root(handler, path_match, data):
handler.end_headers()
if handler.server.development:
app_url = "polymer/splash-login.html"
app_url = "polymer/home-assistant.html"
else:
app_url = "frontend-{}.html".format(version.VERSION)
@ -83,7 +83,7 @@ def _handle_get_root(handler, path_match, data):
"<script"
" src='/static/webcomponents.min.js'></script>"
"<link rel='import' href='/static/{}' />"
"<splash-login auth='{}'></splash-login>"
"<home-assistant auth='{}'></home-assistant>"
"</body></html>").format(app_url, auth))