Open
Description
I heavily modified the button markup and due to :hover styles the first tap on mobile did not trigger the click event on the button.
I suggest modifying the following line
_.btnElement.click(function() {
to
_.btnElement.on('mousedown touchstart',function() {
That would make the click event fire under any circumstances.