I'm building a JavaScript Tizen app for Gear S2 In an earlier stage of development I considered using Angular, but I just ignored the possibility entirely because ng-click events made the screen flicker.
I kept building the app without any issues, my click event worked fine! Until I incorporated jQuery mobile and suddenly my app now flickers when I "tap" the emulator. I tried binding the event in 3 different manners, with the same result:
window.addEventListener("click", callback); // way 1
$(document).bind("click", changeMode); // way 2
$(document).bind("tap", changeMode); // way 3
does anyone have a clue of why this might be happening?