In the Colour Matcher interactive, you should be able to click the bit values to flip a bit value (as suggested by the description). However this doesn't occur.
Tried in:
Google Chrome 77.0.3865.120
Microsoft Edge 44.18362.387.0
The text was updated successfully, but these errors were encountered:
The function updateSlidersFromRepresentation sets each of the 6 nouisliders individually, one after the other, without regard for which slider/binary representation for the slider actually changed.
The function update[num]bitPanel sets the binary representation based on all three sliders, not based on each one individually.
This was adequate, but recently the nouislider update trigger was bound to the update[num]bitPanel function. This means a change in any one slider affects all of the binary representation
So what happens is:
The user clicks a bit in the representation
The bit successfully flips
The red nouislider is updated (updateSliderFromRepresentation step 1 or 5)
The binary representation is set to the values of the nouisliders (update trigger)
If the flipped bit was not red, this reflips it because the respective slider hasn't been updated
The green nouislider is updated (updateSliderFromRepresentation step 2 or 6)
In the Colour Matcher interactive, you should be able to click the bit values to flip a bit value (as suggested by the description). However this doesn't occur.
Tried in:
The text was updated successfully, but these errors were encountered: