Closed Brennwert closed 3 years ago
Same issue here, on Android 4.4 Wechat App. Thanks Markus's hair...
@Brennwert just wondering what you did to fix the issue? Did you add in a needsclick
?
@pollingj: Lazy ass me just removed fastclick in the upload-sections.
In case anyone is interested, I believe I've resolved this issue (not fully tested on all mobile devices yet). The required steps.
$('...').dropzone
needsclick
class. e.g.$('...').find('span').each(function() {
$(this).addClass('needsclick');
})
Hi,
Probably not a problem inside dropzone, but after tearing some of my hair out I wanted to leave the info somewhere: If you include fastclick.js (https://github.com/ftlabs/fastclick) in a page together with dropzone, the file-picker won't open on Android devices. The click-event is just dead.
BR Markus