This commit is contained in:
2019-04-19 20:57:06 +00:00
parent 56f8ee0a35
commit 2a15d8e1aa
6 changed files with 39 additions and 33 deletions

View File

@@ -130,8 +130,9 @@
<script>
/* xeslint-disable */
function clickHandler(item) {
if (this.$gzmenu.isRelevantClick(item)) {
function clickHandler(menuItem) {
var item = this.$gzmenu.parseMenuItem(menuItem);
if (item.owner == "inventory-widget-edit" && !item.disabled) {
alert("inventory-widget-edit.vue::context click: " + item.key);
}
}