From 9387479b73f48a586b2b2ec351bd2e5cd4c282d7 Mon Sep 17 00:00:00 2001 From: ckcz123 Date: Sun, 28 Jun 2020 13:37:34 +0800 Subject: [PATCH] Fix mobile z-index --- _server/editor_listen.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/_server/editor_listen.js b/_server/editor_listen.js index 5647f5b1..94725b6e 100644 --- a/_server/editor_listen.js +++ b/_server/editor_listen.js @@ -83,14 +83,14 @@ editor_listen_wrapper = function (editor) { editor.showdataarea(true) } mobileview.children[1].onclick = function () { - mid.style = ''; + mid.style = 'z-index:110'; right.style = 'z-index:-1;opacity: 0;'; // mobileeditdata.style = 'z-index:-1;opacity: 0;'; editor.lastClickId = ''; } mobileview.children[3].onclick = function () { mid.style = 'z-index:-1;opacity: 0;'; - right.style = ''; + right.style = 'z-index:110'; // mobileeditdata.style = 'z-index:-1;opacity: 0;'; editor.lastClickId = ''; }