Revamp array filtering

Replaced fakeMd5 with new Jua.randomId
Cleanup more code
This commit is contained in:
djmaze 2020-10-02 23:54:15 +02:00
parent 9992b20163
commit c3a2da65df
23 changed files with 130 additions and 289 deletions

View file

@ -1,7 +1,6 @@
import ko from 'ko';
import { KeyState } from 'Common/Enums';
import { selectElement } from 'Common/Utils';
import { popup } from 'Knoin/Knoin';
import { AbstractViewNext } from 'Knoin/AbstractViewNext';
@ -27,7 +26,11 @@ class ViewOpenPgpKeyPopupView extends AbstractViewNext {
selectKey() {
const el = this.keyDom();
if (el) {
selectElement(el);
let sel = getSelection(),
range = document.createRange();
sel.removeAllRanges();
range.selectNodeContents(el);
sel.addRange(range);
}
}