Closed (fixed)
Project:
Clientside Validation
Version:
7.x-1.39
Component:
Webform Validation
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
4 Jun 2014 at 09:13 UTC
Updated:
24 Jul 2014 at 15:10 UTC
Jump to comment: Most recent, Most recent file

Comments
Comment #1
turek commentedPath that worked for me - for 7.x-dev version.
Comment #2
turek commentedComment #3
attiks commentedDon't you mean !=
Comment #4
turek commentedYes, you are right, and quotes around undefined :)
Thanks for a quick response.
Comment #5
attiks commenteddid you add this block by accident, this was removed because it was causing problems
Comment #6
turek commentedActually this was added by git diff. I've seen it in some patches already, and thought it would be ok.
That top part is obviously not needed.
Comment #7
turek commentedThis is a correct one.
Comment #8
alex-mo commentedI think the problem lies within call of function
changeAjax(), not in the function itself (of course: you can always add someifs :), but this would be working around the problem, I guess).changeAjaxgets called on line 1385 withajax_elbeing 'bind' and this no identifier in the DOM (as it should), but a property name coming from the prototype ofDrupal.ajax. IE 8 seems to be more picky when it comes to iterating over or when evaluating these (other browsers don't seem to be startled by this...) . Catching this withhasOwnProperty()does the trick for us.Patch attach.
Comment #9
jelle_sFixed in the latest dev version. Thanks for the patch!