Skip to content

Commit

Permalink
Fix css bulb reference
Browse files Browse the repository at this point in the history
  • Loading branch information
rstrouse committed Oct 11, 2023
1 parent 47eeeae commit e3c35e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Binary file modified SomfyController.littlefs.bin
Binary file not shown.
4 changes: 2 additions & 2 deletions data/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2881,8 +2881,6 @@ class Somfy {
flipPosition = false;
flipCommands = false;
break;


default:
if (ico.classList.contains('icss-window-blind')) ico.classList.remove('icss-window-blind');
if (ico.classList.contains('icss-awning')) ico.classList.remove('icss-awning');
Expand All @@ -2892,8 +2890,10 @@ class Somfy {
if (!ico.classList.contains('icss-window-shade')) ico.classList.add('icss-window-shade');
if (ico.classList.contains('icss-garage')) ico.classList.remove('icss-garage');
if (ico.classList.contains('icss-shutter')) ico.classList.remove('icss-shutter');
if (ico.classList.contains('icss-lightbulb')) ico.classList.remove('icss-lightbulb');
document.getElementById('divTiltSettings').style.display = 'none';
tilt = false;
light = false;
break;
}
document.getElementById('fldTiltTime').parentElement.style.display = tilt ? 'inline-block' : 'none';
Expand Down

0 comments on commit e3c35e7

Please sign in to comment.