parent
cec1f18670
commit
21ca1555c1
2 changed files with 8 additions and 1 deletions
|
@ -782,7 +782,11 @@
|
|||
}
|
||||
|
||||
var row = this.addDynamicRow();
|
||||
row.firstChild.nextSibling.click();
|
||||
// It needs relatively high delay to make focus-on-click work
|
||||
setTimeout(() => {
|
||||
row.firstChild.nextSibling.click();
|
||||
}, 50);
|
||||
|
||||
return row;
|
||||
]]>
|
||||
</body>
|
||||
|
|
|
@ -376,6 +376,9 @@ class ReaderInstance {
|
|||
menupopup.openPopupAtScreen(x, y, false);
|
||||
tagsbox.mode = 'edit';
|
||||
tagsbox.item = item;
|
||||
if (tagsbox.mode == 'edit' && tagsbox.count == 0) {
|
||||
tagsbox.newTag();
|
||||
}
|
||||
}
|
||||
|
||||
_openPagePopup(data) {
|
||||
|
|
Loading…
Reference in a new issue