[Pkg-javascript-commits] [dojo] 27/149: Prevent right clicks from firing click event through touch.js in IE10+. Right click should just bring up the context menu. Fixes #18342.
David Prévot
taffit at moszumanska.debian.org
Sat Feb 27 03:13:43 UTC 2016
This is an automated email from the git hooks/post-receive script.
taffit pushed a commit to branch master
in repository dojo.
commit bce517831e71c23f53e51c387f3f7b8bfa00d843
Author: Ben Brunton <benbrunton at hotmail.com>
Date: Tue Oct 28 16:42:00 2014 +0000
Prevent right clicks from firing click event through touch.js in IE10+.
Right click should just bring up the context menu.
Fixes #18342.
---
touch.js | 16 +++++++++++++---
1 file changed, 13 insertions(+), 3 deletions(-)
diff --git a/touch.js b/touch.js
index 9f812d6..9174a63 100644
--- a/touch.js
+++ b/touch.js
@@ -73,7 +73,7 @@ function(dojo, aspect, dom, domClass, lang, on, has, mouse, domReady, win){
if(node.dojoClick !== undefined){ return node; }
}while(node = node.parentNode);
}
-
+
function doClicks(e, moveType, endType){
// summary:
// Setup touch listeners to generate synthetic clicks immediately (rather than waiting for the browser
@@ -82,14 +82,18 @@ function(dojo, aspect, dom, domClass, lang, on, has, mouse, domReady, win){
// its dojoClick property set to truthy. If a node receives synthetic clicks because one of its ancestors has its
// dojoClick property set to truthy, you can disable synthetic clicks on this node by setting its own dojoClick property
// to falsy.
-
+
+ if(mouse.isRight(e)){
+ return; // avoid spurious dojoclick event on IE10+; right click is just for context menu
+ }
+
var markedNode = marked(e.target);
clickTracker = !e.target.disabled && markedNode && markedNode.dojoClick; // click threshold = true, number, x/y object, or "useTarget"
if(clickTracker){
useTarget = (clickTracker == "useTarget");
clickTarget = (useTarget?markedNode:e.target);
if(useTarget){
- // We expect a click, so prevent any other
+ // We expect a click, so prevent any other
// default action on "touchpress"
e.preventDefault();
}
@@ -119,6 +123,9 @@ function(dojo, aspect, dom, domClass, lang, on, has, mouse, domReady, win){
}
win.doc.addEventListener(moveType, function(e){
+ if(mouse.isRight(e)){
+ return; // avoid spurious dojoclick event on IE10+; right click is just for context menu
+ }
updateClickTracker(e);
if(useTarget){
// prevent native scroll event and ensure touchend is
@@ -128,6 +135,9 @@ function(dojo, aspect, dom, domClass, lang, on, has, mouse, domReady, win){
}, true);
win.doc.addEventListener(endType, function(e){
+ if(mouse.isRight(e)){
+ return; // avoid spurious dojoclick event on IE10+; right click is just for context menu
+ }
updateClickTracker(e);
if(clickTracker){
clickTime = (new Date()).getTime();
--
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-javascript/dojo.git
More information about the Pkg-javascript-commits
mailing list