events: \'click\' : \'select\'
When using this event on Mobile Safari the event gets triggered twice when touched. Is this a known bug or some
Try this code:
TouchView = Backbone.View.extend({ events: function() { return MOBILE ? { "touchstart": 'select' } : { "mousedown": 'select' } } }
See it in action: http://jsfiddle.net/dira/Ke2px/2/