Thanks! I think somebody else ran into an issue like this but with chrome rather than IE.
I suppose I should be using a portability layer... i2b2 includes YUI and prototype, I guess. -- Dan ________________________________ From: [email protected] [[email protected]] on behalf of Larose, Eric R [[email protected]] Sent: Thursday, December 18, 2014 9:55 AM To: [email protected] Subject: Port Query Plugin Hello all, We began testing the Port Query plugin at MCRF and encountered a small issue when testing in IE 9 (institution standard browser). IE 9 didn’t support the addEventListener call in pqctrl.js. Not sure if this will be helpful for anyone else, but the following modification seemed to resolve the issue: Original (In pqctrl.js @ mkPortQuery function): function onClick(elt, doit) { elt.addEventListener("click", doit); } Modified: function onClick(elt, doit) { if(elt.addEventListener){ elt.addEventListener("click", doit); } else if(elt.attachEvent) { elt.attachEvent("onclick", doit); } } Thanks, Eric LaRose ________________________________ The contents of this message may contain private, protected and/or privileged information. If you received this message in error, you should destroy the e-mail message and any attachments or copies, and you are prohibited from retaining, distributing, disclosing or using any information contained within. Please contact the sender and advise of the erroneous delivery by return e-mail or telephone. Thank you for your cooperation.
_______________________________________________ Gpc-dev mailing list [email protected] http://listserv.kumc.edu/mailman/listinfo/gpc-dev
