diff --git a/js/views/file_input_view.js b/js/views/file_input_view.js index 583269e603..40597a8955 100644 --- a/js/views/file_input_view.js +++ b/js/views/file_input_view.js @@ -24,6 +24,9 @@ className: 'file-input', initialize: function(options) { this.$input = this.$('input[type=file]'); + this.$input.click(function(e) { + e.stopPropagation(); + }); this.thumb = new Whisper.AttachmentPreviewView(); this.$el.addClass('file-input'); this.window = options.window;