[fix] drag event not listened

This commit is contained in:
2021-01-08 19:40:20 +00:00
parent 814fc3463e
commit a213f4e89f
3 changed files with 9 additions and 8 deletions

View File

@@ -136,7 +136,8 @@ $( document ).ready( () => {
var url = window.location;
// Upload File
$('#uploadfile').change(function(e){
$('#uploadfile').on('fileloaded', function(e)
{
if(e.target.files[0])
{
var fileName = e.target.files[0].name;

View File

@@ -42,7 +42,7 @@ socket.on('start', () => {
Snackbar.show({
text: 'Running, please wait for your result.',
pos: 'bottom-right',
duration: 60000
duration: 10000
});
});