use random ID as popup ID
This commit is contained in:
parent
2c4fd648db
commit
17934cce4b
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user