Merge pull request #971 from openclassify/muammertop

#3342 Can't upload photo in mobile
This commit is contained in:
Ozcan Durak 2021-02-25 18:59:09 +03:00 committed by GitHub
commit e2a9413df1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -269,7 +269,11 @@ $(document).ready(function () {
// add trigger button for dropzone in mobile view
if( /Android|webOS|iPhone|iPad|Mac|Macintosh|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent) ) {
$('#upload .modal-body').addClass('d-flex flex-column justify-content-center')
$('.dropzone').addClass('hidden').parent().append('<a class="btn btn-primary text-white mobile-img">'+ uploadText +'</a>')
$('.dropzone')
.css('height', '0').css('width', '0').css('border', '0')
.parent().append('<a class="btn btn-primary text-white mobile-img">'+ uploadText +'</a>')
$('.dz-message').html('')
$('.mobile-img').on('click', () => {
$('.dropzone').click()
})