use random ID as popup ID

This commit is contained in:
siikamiika 2020-03-15 18:18:18 +02:00
parent 2c4fd648db
commit 17934cce4b

View File

@ -25,7 +25,6 @@
class PopupProxyHost { class PopupProxyHost {
constructor() { constructor() {
this._popups = new Map(); this._popups = new Map();
this._nextId = 0;
this._apiReceiver = null; this._apiReceiver = null;
this._frameIdPromise = null; this._frameIdPromise = null;
} }
@ -76,7 +75,7 @@ class PopupProxyHost {
// New unique id // New unique id
if (id === null) { if (id === null) {
id = this._nextId++; id = yomichan.generateId(16);
} }
// Create new popup // Create new popup