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>.