branch master updated (66233af -> f874c86)
This is an automated email from the git hooks/post-receive script. New change to branch master in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git from 66233af Update libs new f874c86 Fix event priority sort during key strategy 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 f874c86b924af0f957538b453a25aaca97dc8e3e Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Wed Mar 23 10:41:53 2016 +0100 Fix event priority sort during key strategy Summary of changes: src/extensions/opera/application/KeyHandlingStrategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- 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 master in repository oipf-stub. See https://gitlab.nuiton.org/codelutin/oipf-stub.git commit f874c86b924af0f957538b453a25aaca97dc8e3e Author: Julien Ruchaud <julien.ruchaud@debux.org> Date: Wed Mar 23 10:41:53 2016 +0100 Fix event priority sort during key strategy --- src/extensions/opera/application/KeyHandlingStrategy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/extensions/opera/application/KeyHandlingStrategy.js b/src/extensions/opera/application/KeyHandlingStrategy.js index 47640e4..c458986 100644 --- a/src/extensions/opera/application/KeyHandlingStrategy.js +++ b/src/extensions/opera/application/KeyHandlingStrategy.js @@ -75,7 +75,7 @@ module.exports = function(ctx) { let priorities = Array.from(eventDispatchPriorities.values()); priorities.sort(function(a, b) { - return b - a; + return b.eventDispatchPriority - a.eventDispatchPriority; }); priorities.forEach((application) => { -- To stop receiving notification emails like this one, please contact SCM administrator <admin+scm@forge.codelutin.com>.
participants (1)
-
scm