+
+
+
- Rising
-
-
- {{rising | formatTime}}
+ Rising
+
[[risingTime]]
-
+
- Setting
-
-
- {{setting | formatTime}}
+ Setting
+
[[settingTime]]
+
+
-
-
-
diff --git a/homeassistant/components/frontend/www_static/polymer/more-infos/more-info-thermostat.html b/homeassistant/components/frontend/www_static/polymer/more-infos/more-info-thermostat.html
index 356d49a85c3..e999e264bd2 100644
--- a/homeassistant/components/frontend/www_static/polymer/more-infos/more-info-thermostat.html
+++ b/homeassistant/components/frontend/www_static/polymer/more-infos/more-info-thermostat.html
@@ -1,114 +1,120 @@
-
-
-
+
+
+
-
-
+
-
-
+
Target Temperature
+ min='[[tempMin]]' max='[[tempMax]]'
+ value='[[targetTemperatureSliderValue]]' pin
+ on-change='targetTemperatureSliderChanged'>
-
-
+
+
+
-
diff --git a/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-js.html b/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-js.html
index e12d46ecb6d..147c139a307 100644
--- a/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-js.html
+++ b/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-js.html
@@ -6,6 +6,9 @@
var DOMAINS_WITH_MORE_INFO = [
'light', 'group', 'sun', 'configurator', 'thermostat', 'script'
];
+ var DOMAINS_HIDE_MORE_INFO = [
+ 'sensor',
+ ];
// Add some frontend specific helpers to the models
Object.defineProperties(window.hass.stateModel.prototype, {
@@ -70,7 +73,9 @@
},
stateMoreInfoType: function(state) {
- if(DOMAINS_WITH_MORE_INFO.indexOf(state.domain) !== -1) {
+ if(DOMAINS_HIDE_MORE_INFO.indexOf(state.domain) !== -1) {
+ return false;
+ } else if(DOMAINS_WITH_MORE_INFO.indexOf(state.domain) !== -1) {
return state.domain;
} else {
return 'default';
diff --git a/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-style.html b/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-style.html
index 8234ef113ef..c9594629d3d 100644
--- a/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-style.html
+++ b/homeassistant/components/frontend/www_static/polymer/resources/home-assistant-style.html
@@ -1,7 +1,7 @@