focus on input when opening filepicker
This commit is contained in:
@@ -117,7 +117,8 @@ define([
|
|||||||
// Update the files list when needed
|
// Update the files list when needed
|
||||||
updateContainer = function () {
|
updateContainer = function () {
|
||||||
$container.html('');
|
$container.html('');
|
||||||
var filter = $filter.find('.cp-filepicker-filter').val().trim();
|
var $input = $filter.find('.cp-filepicker-filter');
|
||||||
|
var filter = $input.val().trim();
|
||||||
var todo = function (err, list) {
|
var todo = function (err, list) {
|
||||||
if (err) { return void console.error(err); }
|
if (err) { return void console.error(err); }
|
||||||
Object.keys(list).forEach(function (id) {
|
Object.keys(list).forEach(function (id) {
|
||||||
@@ -136,6 +137,7 @@ define([
|
|||||||
if (typeof onSelect === "function") { onSelect(data.href); }
|
if (typeof onSelect === "function") { onSelect(data.href); }
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
$input.focus();
|
||||||
};
|
};
|
||||||
common.getFilesList(filters, todo);
|
common.getFilesList(filters, todo);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user