Merge pull request #3723 from thelounge/xpaw/context-position

Fix DOMRect coordinates in Safari
This commit is contained in:
Pavel Djundik 2020-01-27 11:06:02 +02:00 committed by GitHub
commit 34436f9a72
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View file

@ -137,8 +137,8 @@ export default {
view: window,
bubbles: true,
cancelable: true,
clientX: rect.x,
clientY: rect.y + rect.height,
clientX: rect.left,
clientY: rect.top + rect.height,
});
el.dispatchEvent(ev);
},

View file

@ -35,8 +35,8 @@ const vueApp = new Vue({
const rect = el.getBoundingClientRect();
const event = new MouseEvent("click", {
view: window,
clientX: rect.x + 10,
clientY: rect.y,
clientX: rect.left + 10,
clientY: rect.top,
});
this.$root.$emit("contextmenu:removenetwork", {