From: Alexander Ebert Date: Fri, 16 Oct 2015 13:28:41 +0000 (+0200) Subject: Force exclude of touch devices from [Ctrl]+[S] in editor X-Git-Tag: 2.1.8~11 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=803ba6ec3b87158c262f218c352c792acc171143;p=GitHub%2FWoltLab%2FWCF.git Force exclude of touch devices from [Ctrl]+[S] in editor --- diff --git a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js index 92b6287cb0..f8ca8804cb 100644 --- a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js +++ b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js @@ -1927,7 +1927,7 @@ RedactorPlugins.wbbcode = function() { // [S] case 83: // not supported on mobile devices anyway - if ($.browser.mobile) { + if ($.browser.mobile || $.browser.touch) { return; }