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've solved the same issue generically by creating backbone.touch for Backbone that will monkey patch Backbone.View to respond to touch events when a touch device is used, or regular click events when not.
You can either just include the source file to have it transform all of your click
events in Backbone.Views, or you can take a peek at the code and implement it yourself.
I defined both events types and it works for me on a mobile and desktop:
events: {
'click' : 'select',
'touchstart' : 'select'
}