From c327c85d6f9ca118cbc19e60db91961d5f1cad4d Mon Sep 17 00:00:00 2001 From: wolegca <2738076308@qq.com> Date: Thu, 12 Sep 2019 16:12:08 +0800 Subject: [PATCH] bug fix --- base.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/base.js b/base.js index 530ed47..216045c 100644 --- a/base.js +++ b/base.js @@ -1,6 +1,6 @@ -$(window).on("selectstart", function () { +window.onselectstart = function () { return false; -}); -$(window).on("touchstart", function () { +} +window.ontouchstart = function(){ return false; -}); \ No newline at end of file +} \ No newline at end of file