WIP: focus the search field after it is displayed.

This commit is contained in:
Georges Dupéron 2018-06-19 21:44:54 +02:00
parent b22ddf9180
commit 01849cb2d9

View File

@ -951,6 +951,9 @@ var ZoteroPane = new function()
this.showCollectionLookup = Zotero.Promise.coroutine(function* (parentKey) {
var collectionsLookupTextbox = document.getElementById('zotero-collection-lookup-textbox');
collectionsLookupTextbox.hidden = !collectionsLookupTextbox.hidden;
if (!collectionsLookupTextbox.hidden) {
collectionsLookupTextbox.focus();
}
this.updateCollectionLookupToolbarButton();
});
this.updateCollectionLookupToolbarButton = function () {