branch support-webpack updated (9505a79 -> 980de35)
This is an automated email from the git hooks/post-receive script. New change to branch support-webpack in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git from 9505a79 Change number of version to be compatible with yarn new 980de35 Remove deprecated code The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference. Detailed log of new commits: commit 980de35b22fa08d9c6c553fa0032fb354c03de27 Author: Julien Ruchaud <ruchaud@codelutin.com> Date: Wed Apr 26 15:20:19 2017 +0200 Remove deprecated code Summary of changes: src/extensions/opera/application/KeyHandlingStrategy.js | 11 ----------- 1 file changed, 11 deletions(-) -- To stop receiving notification emails like this one, please contact SCM administrator <admin+scm@forge.codelutin.com>.
This is an automated email from the git hooks/post-receive script. New commit to branch support-webpack in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git commit 980de35b22fa08d9c6c553fa0032fb354c03de27 Author: Julien Ruchaud <ruchaud@codelutin.com> Date: Wed Apr 26 15:20:19 2017 +0200 Remove deprecated code --- src/extensions/opera/application/KeyHandlingStrategy.js | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/src/extensions/opera/application/KeyHandlingStrategy.js b/src/extensions/opera/application/KeyHandlingStrategy.js index 71fc9e5..e116277 100644 --- a/src/extensions/opera/application/KeyHandlingStrategy.js +++ b/src/extensions/opera/application/KeyHandlingStrategy.js @@ -36,17 +36,6 @@ module.exports = function(ctx) { let shift = event.shiftKey; - // On certain strange keyboards one needs to press shift for getting the digits. - // On these keyboards, shift has to be cancelled for getting the true code to pass - // to the application. - - if (event.keyCode >= 48 && event.keyCode <= 57) { - let keyId = parseInt(event.keyIdentifier.replace(/U\+0*/, ""), 16); - if (keyId >= 48 && keyId <= 57) { - shift = false; - } - } - let keyCode = event.keyCode | (event.altKey && this.ALT_MASK) | (shift && this.SHIFT_MASK) -- To stop receiving notification emails like this one, please contact SCM administrator <admin+scm@forge.codelutin.com>.
participants (1)
-
scm