| <div class="page-header"> |
| <h2>LED light control</h2> |
| ng-class="{disabled: dataService.server_unreachable || dataService.loading}" |
| <div class="led-switch__label"> |
| Turn the LED light on or off. If the server has an LCD, use this control |
| to display text (on) or not to display text (off) on the LCD. |
| <div class="toggle-container"> |
| id="toggle__switch-round" |
| class="toggle-switch toggle-switch__round-flat" |
| ng-checked="dataService.LED_state == 'on'" |
| ng-disabled="dataService.server_unreachable" |
| <label for="toggle__switch-round" tabindex="0" |
| <span class="toggle-switch__status">{{ |
| {{ dataService.LED_state == "on" ? "On" : "Off" }} |