From 62970192ef3c4ff7dbf5863a7a5e2a21d644ea8a Mon Sep 17 00:00:00 2001 From: Jon Ziebell Date: Wed, 6 Nov 2019 23:04:23 -0500 Subject: [PATCH] Minor text fixes --- js/component/modal/runtime_thermostat_summary_custom.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/js/component/modal/runtime_thermostat_summary_custom.js b/js/component/modal/runtime_thermostat_summary_custom.js index ab3a411..2a30ad6 100644 --- a/js/component/modal/runtime_thermostat_summary_custom.js +++ b/js/component/modal/runtime_thermostat_summary_custom.js @@ -1,5 +1,5 @@ /** - * Custom date range for the aggregate runtime chart. + * Custom date range for the Runtime Summary chart. */ beestat.component.modal.runtime_thermostat_summary_custom = function() { beestat.component.modal.apply(this, arguments); @@ -9,7 +9,7 @@ beestat.extend(beestat.component.modal.runtime_thermostat_summary_custom, beesta beestat.component.modal.runtime_thermostat_summary_custom.prototype.decorate_contents_ = function(parent) { var self = this; - parent.appendChild($.createElement('p').innerHTML('Choose a custom range to display on the Aggregate Runtime chart.')); + parent.appendChild($.createElement('p').innerHTML('Choose a custom range to display on the Runtime Summary chart.')); // Time count var time_count = new beestat.component.input.text() @@ -143,7 +143,7 @@ beestat.component.modal.runtime_thermostat_summary_custom.prototype.decorate_con * @return {string} Title */ beestat.component.modal.runtime_thermostat_summary_custom.prototype.get_title_ = function() { - return 'Aggregate Runtime - Custom Range'; + return 'Runtime Summary - Custom Range'; }; /**