#6 UI Updates senden und anzeigen

This commit is contained in:
David Zingg 2019-11-20 21:25:22 +01:00
parent 24c7010a9e
commit 66f2792027
3 changed files with 1 additions and 8 deletions

View File

@ -15,7 +15,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
octoprint.plugin.ShutdownPlugin):
def __init__(self):
self._pollTimer = None
self.ip = None
self.intervall = 1
self._timer = None
@ -75,10 +74,6 @@ class MyStromSwitchPlugin(octoprint.plugin.SettingsPlugin,
def on_shutdown(self):
self._logger.info("Hello World!")
def on_settings_load(self):
self._logger.info("on_settings_load")
self.initialize()
def on_settings_migrate(self, target, current):
pass

View File

@ -9,7 +9,6 @@ $(function() {
self.mystromswitchEnabled = ko.observable();
self.testButtonChangeStatus = function (stat) {
$("#tester_mystromswitch_gcode").prop("disabled", stat);
$("#tester_mystromswitch_api").prop("disabled", stat);
@ -291,4 +290,3 @@ $(function() {
$(".sidebar_plugin_mystromswitch").get(0)
]);
});

View File

@ -1,5 +1,5 @@
<div class="sidebar_plugin_mystromswitch">
<label class="checkbox">
<label class="checkbox">
<input type="checkbox" data-bind="enable: loginState.isUser(), checked: mystromswitchEnabled">
{{ _('Shutdown Printer after print finishes') }}
</label>