Fix mobile z-index

This commit is contained in:
ckcz123 2020-06-28 13:37:34 +08:00
parent d89c63008a
commit 9387479b73

View File

@ -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 = '';
}