From cae2a11f7b05021eec06c0c6aec1556c4bd6ede4 Mon Sep 17 00:00:00 2001 From: jamespcole Date: Mon, 6 Apr 2015 15:22:52 +1000 Subject: [PATCH] removed unneeded loading messages --- .../frontend/www_static/polymer/components/state-timeline.html | 3 --- 1 file changed, 3 deletions(-) diff --git a/homeassistant/components/frontend/www_static/polymer/components/state-timeline.html b/homeassistant/components/frontend/www_static/polymer/components/state-timeline.html index d1e41e7506b..2232b4becf8 100644 --- a/homeassistant/components/frontend/www_static/polymer/components/state-timeline.html +++ b/homeassistant/components/frontend/www_static/polymer/components/state-timeline.html @@ -58,7 +58,6 @@ return; } this.isLoading = true; - this.spinnerMessage = 'Building timelines...'; var container = this.$.timeline; var chart = new google.visualization.Timeline(container); @@ -159,7 +158,6 @@ fill in its data. **************************************************/ - this.spinnerMessage = 'Building line graphs...'; var isSingleDevice = false; if(stateHistory.length === 1) { isSingleDevice = true; @@ -287,7 +285,6 @@ chart.draw(dataTable, options); } this.isLoading = false; - this.spinnerMessage = 'Loading data...';//just resetting it back to the generic message },