diff --git a/docs/develop/design.rst b/docs/develop/design.rst index 9377ab86..2fc7a2d7 100644 --- a/docs/develop/design.rst +++ b/docs/develop/design.rst @@ -17,7 +17,7 @@ Blocks blocks.js is responsible for creating all blocks on the Dashboard. Depending on the block type this responsibility is delegated to helpers. Switches are handled by switches.js -Thermostats and EvoHome devices are handled by thermostat.js +Thermostats and EvoHome devices are handled by tempcontrol.js Several specific Domoticz devices are handled by block.js itself, like P1 smart meter and TempHumBar devices. diff --git a/js/main.js b/js/main.js index db85959b..8c09a68e 100644 --- a/js/main.js +++ b/js/main.js @@ -211,7 +211,7 @@ function configureDashticz() { return $.when( DT_function.loadDTScript('js/switches.js'), - DT_function.loadDTScript('js/thermostat.js'), + DT_function.loadDTScript('js/tempcontrol.js'), DT_function.loadDTScript('js/dashticz.js'), DT_function.loadDTScript('js/blocks.js'), DT_function.loadDTScript('js/login.js'), diff --git a/js/thermostat.js b/js/tempcontrol.js similarity index 99% rename from js/thermostat.js rename to js/tempcontrol.js index bbbf5384..4a861031 100644 --- a/js/thermostat.js +++ b/js/tempcontrol.js @@ -407,4 +407,4 @@ function switchEvoHotWater(block, state, override) { dial ? DT_dial.make(block) : getEvohomeHotWaterBlock(block); }); } -//# sourceURL=js/thermostat.js +//# sourceURL=js/tempcontrol.js