How come I need to add a touch event to my element for it to enable hover styles? Is this normal? Sure feels a bit wonky
This is what I have to add to make :hover work, if I don't no :hover style is set
sorry for the coffeescript
@button.$el.on('touchstart', ()->
console.log("touch started")
)