| Issue 9: | click handling in IE (7) | |
| 1 person starred this issue and may be notified of changes. | Back to list |
clicking on the tick lines in click events demo does not work (clicks are
not picked up).
i managed to work around it by changing
if(this.options.grid.clickable) {
this.overlay.observe('click', this.onClick.bind(this));
}
to
if(this.options.grid.clickable) {
this.overlay.observe('click', this.onClick.bind(this));
this.canvas.observe('click', this.onClick.bind(this));
}
|
|
,
Sep 30, 2008
Thanks Sixten, i will add your fix to the latest code.
Status: Accepted
Owner: obaidahmed |
|
| ► Sign in to add a comment |