Skip to content

Commit

Permalink
Fix where canvas could have a blue highlight effect on tap. (#12635)
Browse files Browse the repository at this point in the history
* 12634: Fix where canvas could have a blue highlight effect on tap in chrome.

* 12634: Linter fix
  • Loading branch information
saaratrix authored Jun 6, 2022
1 parent 0140a1a commit 73de9c7
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/dev/core/src/Engines/engine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1973,6 +1973,7 @@ export class Engine extends ThinEngine {
this._renderingCanvas.setAttribute("touch-action", "none");
this._renderingCanvas.style.touchAction = "none";
(this._renderingCanvas.style as any).msTouchAction = "none";
(this._renderingCanvas.style as any).webkitTapHighlightColor = "transparent";
}

// Loading screen
Expand Down

0 comments on commit 73de9c7

Please sign in to comment.