Automatically focus collection name in New Collection window

https://forums.zotero.org/discussion/113706/zotero-beta-7-adding-new-collection
This commit is contained in:
Dan Stillman 2024-04-15 23:49:13 -04:00
parent cdacc42fd2
commit 86ee56cfac

View file

@ -27,7 +27,9 @@ var Zotero_New_Collection_Dialog = {
_handleLoad() {
let io = window.arguments[0];
document.querySelector('#name').value = io.name;
let nameElem = document.querySelector('#name');
nameElem.value = io.name;
nameElem.select();
document.addEventListener('dialogaccept', () => this._handleAccept());
this._libraryID = io.libraryID;