WIP: focus the search field after it is displayed.
This commit is contained in:
parent
b22ddf9180
commit
01849cb2d9
|
@ -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 () {
|
||||
|
|
Loading…
Reference in New Issue
Block a user