Changed wrapper and events to allow other EventListeners.
This commit is contained in:
parent
fa0256d782
commit
ca5a39d661
@ -146,15 +146,20 @@ export default class CardWrapper extends Object {
|
|||||||
/* https://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a
|
/* https://stackoverflow.com/questions/49564905/is-it-possible-to-use-click-function-on-svg-tags-i-tried-element-click-on-a
|
||||||
proposes the dispatchEvent solution. But this leads to problems in flippable.html hiding the back page.
|
proposes the dispatchEvent solution. But this leads to problems in flippable.html hiding the back page.
|
||||||
Therefore we use the original click event (see constructor). */
|
Therefore we use the original click event (see constructor). */
|
||||||
if (this.isSVGNode(node)) {
|
// if (this.isSVGNode(node)) {
|
||||||
if (this.triggerSVGClicks) {
|
// if (this.triggerSVGClicks) {
|
||||||
|
// let click = new Event('click')
|
||||||
|
// node.dispatchEvent(click)
|
||||||
|
// }
|
||||||
|
// return
|
||||||
|
// }
|
||||||
|
// node.click()
|
||||||
|
|
||||||
let click = new Event('click')
|
let click = new Event('click')
|
||||||
|
click.clientX = event.clientX
|
||||||
|
click.clientY = event.clientY
|
||||||
node.dispatchEvent(click)
|
node.dispatchEvent(click)
|
||||||
}
|
}
|
||||||
return
|
|
||||||
}
|
|
||||||
node.click()
|
|
||||||
}
|
|
||||||
|
|
||||||
nodeTapped(node, event) {
|
nodeTapped(node, event) {
|
||||||
console.log('nodeTapped', node, this.isClickable(node))
|
console.log('nodeTapped', node, this.isClickable(node))
|
||||||
|
@ -1,7 +1,10 @@
|
|||||||
export default class Events {
|
export default class Events {
|
||||||
static stop(event) {
|
static stop(event) {
|
||||||
event.preventDefault()
|
event.preventDefault()
|
||||||
event.stopPropagation()
|
// I removed this, as it destroys all the Hammer.js events.
|
||||||
|
// And also the click event.
|
||||||
|
// It seems to have no (apparent) negative impact. -SO
|
||||||
|
// event.stopPropagation()
|
||||||
}
|
}
|
||||||
|
|
||||||
static extractPoint(event) {
|
static extractPoint(event) {
|
||||||
|
Loading…
Reference in New Issue
Block a user