mirror of
https://github.com/jupyter/notebook.git
synced 2025-01-12 11:45:38 +08:00
fix:can't choose same file
This commit is contained in:
parent
b8b66332e2
commit
c339a34605
@ -338,11 +338,11 @@ define([
|
|||||||
reader.onerror = reader_onerror;
|
reader.onerror = reader_onerror;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
// Replace the file input form wth a clone of itself. This is required to
|
// Clear fileinput value. This is required to
|
||||||
// reset the form. Otherwise, if you upload a file, delete it and try to
|
// reset the form. Otherwise, if you upload a file, delete it and try to
|
||||||
// upload it again, the changed event won't fire.
|
// upload it again, the changed event won't fire.
|
||||||
var form = $('input.fileinput');
|
var form = $('input.fileinput');
|
||||||
form.replaceWith(form.clone(true));
|
form.val('');
|
||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user