removed unneeded loading messages

This commit is contained in:
jamespcole 2015-04-06 15:22:52 +10:00
parent b1f01506ce
commit cae2a11f7b

View File

@ -58,7 +58,6 @@
return; return;
} }
this.isLoading = true; this.isLoading = true;
this.spinnerMessage = 'Building timelines...';
var container = this.$.timeline; var container = this.$.timeline;
var chart = new google.visualization.Timeline(container); var chart = new google.visualization.Timeline(container);
@ -159,7 +158,6 @@
fill in its data. fill in its data.
**************************************************/ **************************************************/
this.spinnerMessage = 'Building line graphs...';
var isSingleDevice = false; var isSingleDevice = false;
if(stateHistory.length === 1) { if(stateHistory.length === 1) {
isSingleDevice = true; isSingleDevice = true;
@ -287,7 +285,6 @@
chart.draw(dataTable, options); chart.draw(dataTable, options);
} }
this.isLoading = false; this.isLoading = false;
this.spinnerMessage = 'Loading data...';//just resetting it back to the generic message
}, },