Merge branch 'master' of github.com:pietervdvn/MapComplete
This commit is contained in:
commit
669caea7b3
1 changed files with 2 additions and 0 deletions
|
@ -54,10 +54,12 @@ export abstract class UIElement {
|
|||
if (this._onClick !== undefined) {
|
||||
const self = this;
|
||||
element.onclick = (e) => {
|
||||
// @ts-ignore
|
||||
if(e.consumed){
|
||||
return;
|
||||
}
|
||||
self._onClick();
|
||||
// @ts-ignore
|
||||
e.consumed = true;
|
||||
}
|
||||
element.style.pointerEvents = "all";
|
||||
|
|
Loading…
Reference in a new issue