events: \'click\' : \'select\'
When using this event on Mobile Safari the event gets triggered twice when touched. Is this a known bug or some
I have used Modernizr to detect the touch device and used following code and this worked for me.
events :function(){ return Modernizr.touch ? { "touchstart #edit" : "openEdit", }: { "click #edit" : "openEdit", } }