forked from leftypol/leftypol
Adds keyboard focus to file selector
This commit is contained in:
parent
4da073b6e8
commit
6e84a25f9a
2 changed files with 10 additions and 2 deletions
|
@ -135,13 +135,21 @@ var dropHandlers = {
|
|||
$(document).on(dropHandlers, '.dropzone');
|
||||
|
||||
$(document).on('click', '.dropzone .remove-btn', function (e) {
|
||||
e.stopPropagation();
|
||||
|
||||
var file = $(e.target).parent().data('file-ref');
|
||||
|
||||
getThumbElement(file).remove();
|
||||
removeFile(file);
|
||||
});
|
||||
|
||||
$(document).on('click', '.dropzone .file-hint', function (e) {
|
||||
$(document).on('keypress click', '.dropzone, .dropzone .file-hint', function (e) {
|
||||
e.stopPropagation();
|
||||
|
||||
// accept mosue click or Enter
|
||||
if (e.which != 1 || e.which != 13)
|
||||
return;
|
||||
|
||||
var $fileSelector = $('<input type="file" multiple>');
|
||||
|
||||
$fileSelector.on('change', function (e) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue