Skip to content

Commit

Permalink
fix autolamp tooltip (#146)
Browse files Browse the repository at this point in the history
Properly apply autolamp tooltip
  • Loading branch information
ericfont authored Mar 9, 2022
1 parent 4b6cd9a commit b5c2293
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions index_ov2640.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ const uint8_t index_ov2640_html[] = R"=====(<!doctype html>
<input type="range" id="lamp" min="0" max="100" value="0" class="default-action">
<div class="range-max">Full</div>
</div>
<div class="input-group hidden" id="autolamp-group">
<div class="input-group hidden" id="autolamp-group" title="Lamp only on when camera active">
<label for="autolamp">Auto Lamp</label>
<div class="switch">
<input id="autolamp" type="checkbox" class="default-action" title="Lamp only on when camera active">
<input id="autolamp" type="checkbox" class="default-action">
<label class="slider" for="autolamp"></label>
</div>
</div>
Expand Down
4 changes: 2 additions & 2 deletions index_ov3660.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ const uint8_t index_ov3660_html[] = R"=====(<!doctype html>
<input type="range" id="lamp" min="0" max="100" value="0" class="default-action">
<div class="range-max">Full</div>
</div>
<div class="input-group hidden" id="autolamp-group">
<div class="input-group hidden" id="autolamp-group" title="Lamp only on when camera active">
<label for="autolamp">Auto Lamp</label>
<div class="switch">
<input id="autolamp" type="checkbox" class="default-action" title="Lamp only on when camera active">
<input id="autolamp" type="checkbox" class="default-action">
<label class="slider" for="autolamp"></label>
</div>
</div>
Expand Down

0 comments on commit b5c2293

Please sign in to comment.