1
0
mirror of https://github.com/beestat/app.git synced 2025-07-09 03:04:07 -04:00

Minor text fixes

This commit is contained in:
Jon Ziebell 2019-11-06 23:04:23 -05:00
parent f5ff29d45e
commit 62970192ef

View File

@ -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.runtime_thermostat_summary_custom = function() {
beestat.component.modal.apply(this, arguments); 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) { beestat.component.modal.runtime_thermostat_summary_custom.prototype.decorate_contents_ = function(parent) {
var self = this; 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 // Time count
var time_count = new beestat.component.input.text() 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 * @return {string} Title
*/ */
beestat.component.modal.runtime_thermostat_summary_custom.prototype.get_title_ = function() { beestat.component.modal.runtime_thermostat_summary_custom.prototype.get_title_ = function() {
return 'Aggregate Runtime - Custom Range'; return 'Runtime Summary - Custom Range';
}; };
/** /**