Been noticing that Buttons are not coming back to original color on mobile once pressed. Just did some testing and it worked in 016 but stopped in 017.
Great... here is our entry in ZIM 017 Updates:
Fixed ZIM Button so touch screen (non mobile) turns off rollcolor properly. Was testing for M to turn off rollcolor, now tests for touchend or touchcancel - thanks Karel Rosseel for pointing this out on NumPad
1 Like
There - the Button on 017, 018, 019, 020 has been patched to fix that rollover - we just added back the M test and kept the newer test for touchscreen.
1 Like
Ah... found it - this was our test:
(e.nativeEvent && (e.nativeEvent.type == "touchend" || e.nativeEvent == "touchcancel"))
Do you see it... it should have been:
(e.nativeEvent && (e.nativeEvent.type == "touchend" || e.nativeEvent.type == "touchcancel"))
1 Like
Actually... still seemed to need the WW.M test. So... all is good now.
1 Like