ÿØÿà JFIF ÿÛ „ ( %"1"%)+...383,7(-.-
![]() Server : Apache/2.4.6 (CentOS) OpenSSL/1.0.2k-fips PHP/7.4.20 System : Linux st2.domain.com 3.10.0-1127.10.1.el7.x86_64 #1 SMP Wed Jun 3 14:28:03 UTC 2020 x86_64 User : apache ( 48) PHP Version : 7.4.20 Disable Function : NONE Directory : /var/www/html/hls5.vidoe.top/uploader-master/demo/ |
/* * Some helper functions to work with our UI and keep our code cleaner */ // Adds an entry to our debug area function ui_add_log(message, color) { var d = new Date(); var dateString = (('0' + d.getHours())).slice(-2) + ':' + (('0' + d.getMinutes())).slice(-2) + ':' + (('0' + d.getSeconds())).slice(-2); color = (typeof color === 'undefined' ? 'muted' : color); var template = $('#debug-template').text(); template = template.replace('%%date%%', dateString); template = template.replace('%%message%%', message); template = template.replace('%%color%%', color); $('#debug').find('li.empty').fadeOut(); // remove the 'no messages yet' $('#debug').prepend(template); } // Creates a new file and add it to our list function ui_multi_add_file(id, file) { var template = $('#files-template').text(); template = template.replace('%%filename%%', file.name); template = $(template); template.prop('id', 'uploaderFile' + id); template.data('file-id', id); $('#files').find('li.empty').fadeOut(); // remove the 'no files yet' $('#files').prepend(template); } // Changes the status messages on our list function ui_multi_update_file_status(id, status, message) { $('#uploaderFile' + id).find('span').html(message).prop('class', 'status text-' + status); } // Updates a file progress, depending on the parameters it may animate it or change the color. function ui_multi_update_file_progress(id, percent, color, active) { color = (typeof color === 'undefined' ? false : color); active = (typeof active === 'undefined' ? true : active); var bar = $('#uploaderFile' + id).find('div.progress-bar'); bar.width(percent + '%').attr('aria-valuenow', percent); bar.toggleClass('progress-bar-striped progress-bar-animated', active); if (percent === 0){ bar.html(''); } else { bar.html(percent + '%'); } if (color !== false){ bar.removeClass('bg-success bg-info bg-warning bg-danger'); bar.addClass('bg-' + color); } }