Skip to content

Commit

Permalink
on peut delete sur windows (à cause du "fix" en classe on pouvait pas…
Browse files Browse the repository at this point in the history
… mdr
  • Loading branch information
Niilyx committed Apr 4, 2022
1 parent 45e00e5 commit e350384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ window.onload = () => {
//préparer la suppression clic droit
//à ce propos: le fait de supprimer une case avec clic droit ne fonctionne que sur Windows...
//J'ai essayé de le fix, mais Linux n'aime pas quand on annule l'événement oncontextmenu??
if (navigator.oscpu.contains("Linux")) {
if (navigator.oscpu != undefined && navigator.oscpu.contains("Linux")) {
document.getElementById("board").oncontextmenu = (event) => {
pullOut(event.target[0])
return false
Expand Down

0 comments on commit e350384

Please sign in to comment.