Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Internet Explorer issues: onhover and onunhover #16

Open
tgillet1 opened this issue Apr 9, 2012 · 2 comments
Open

Internet Explorer issues: onhover and onunhover #16

tgillet1 opened this issue Apr 9, 2012 · 2 comments

Comments

@tgillet1
Copy link

tgillet1 commented Apr 9, 2012

I was getting an error reported as origEvent.pageX being "null or not an object". After some debugging I found that e.origEvent was undefined in the onhover (line 1378) and onunhover (line 1389) events. I tracked the problem to handleMemberHover, which uses vis4.DelayedTask. In vis4.DelayedTask (line 70), additional arguments (in this case just the event object that is to be assigned to origEvent) are processed using a "for (var i in args)" loop, which does not work in IE. I simply changed this to "for (var i = 0; i < args.length; i++)" and the problem was fixed.

@zzolo
Copy link

zzolo commented Apr 12, 2012

Same issue, @tgillet1 fix worked. I did not hack the vis4 file, I just redefined the vis4.DelayedTask function.

Maybe this is fixed in a newer version of vis4? (as I am using the version that comes with BubbleTree)

@James70
Copy link

James70 commented Sep 24, 2013

To "Tgillet1": Thank you so much for taking the time to share your discovery regarding the script error in Internet Explorer when you hover or unhover over a bubble. I doubt I would ever had figured this out myself :)

@pwalsh pwalsh added this to the Backlog milestone Dec 15, 2015
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

4 participants