From c64a4795d1eb209a8361798785f78b2cfff232a4 Mon Sep 17 00:00:00 2001 From: wolegca <2738076308@qq.com> Date: Thu, 12 Sep 2019 16:09:54 +0800 Subject: [PATCH] block touchstart --- base.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/base.js b/base.js index 0208d12..530ed47 100644 --- a/base.js +++ b/base.js @@ -1,3 +1,6 @@ -$(window).on("selectstart",function(){ +$(window).on("selectstart", function () { + return false; +}); +$(window).on("touchstart", function () { return false; }); \ No newline at end of file