Browse Source

Add demo english annotation.

杜府 3 years ago
parent
commit
dcdeb16743
1 changed files with 1 additions and 0 deletions
  1. 1 0
      demo/src/main.js

+ 1 - 0
demo/src/main.js

@@ -33,6 +33,7 @@ document.body.addEventListener('touchstart', function () {
 });
 
 // 阻止双击放大
+// Prevent double click zoom
 document.addEventListener('touchstart', function (event) {
     if (event.touches.length > 1) {
         event.preventDefault();