Extract refactor
// receives the "colorChanged" web socket event
connection.on("colorChanged", hex => {
// update the bulb color
bulb.style = `fill: #${hex};`;
currentColor.textContent = `#${hex}`
});


Last updated
// receives the "colorChanged" web socket event
connection.on("colorChanged", hex => {
// update the bulb color
bulb.style = `fill: #${hex};`;
currentColor.textContent = `#${hex}`
});


Last updated