rightmenu icon indicating copy to clipboard operation
rightmenu copied to clipboard

关于右击取消弹框的问题

Open llyyayx opened this issue 4 years ago • 1 comments

  • 在右击取消弹框时,取消弹框的同时会触发浏览器的默认右击菜单 建议修改
 document.getElementById("TT_MASK").addEventListener("contextmenu", (e) => {
      // 在此处添加屏蔽原生右击动作
      e.preventDefault()
      if (document.getElementById("tt_right_menu" + currentSize)) {
         document.getElementById("tt_right_menu" + currentSize).style = `display:none`
       }
      document.getElementById("TT_MASK").style = "display:none";
})

llyyayx avatar Jul 15 '20 04:07 llyyayx

麻烦您更新此问题时,同时更新下npm包

llyyayx avatar Jul 15 '20 04:07 llyyayx