From: Alexander Ebert Date: Tue, 16 Dec 2014 21:45:09 +0000 (+0100) Subject: Disabled [Ctrl/Meta] + [S] on mobile devices X-Git-Tag: 2.1.0_Beta_2~26 X-Git-Url: https://git.stricted.de/?a=commitdiff_plain;h=b7fc0c5dbfe0eac2f2bdbcb6cae76740100b8c64;p=GitHub%2FWoltLab%2FWCF.git Disabled [Ctrl/Meta] + [S] on mobile devices --- diff --git a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js index 8ed23c0b0b..fc91365875 100644 --- a/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js +++ b/wcfsetup/install/files/js/3rdParty/redactor/plugins/wbbcode.js @@ -1359,6 +1359,11 @@ RedactorPlugins.wbbcode = function() { // [S] case 83: + // not supported on mobile devices anyway + if ($.browser.mobile) { + return; + } + var $submitEditor = false; if (navigator.platform.match(/^Mac/)) { if (data.event.ctrlKey && data.event.altKey) {