#883 closed bug (fixed)
There could be scenarios where value has no properties inside the prop function.
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | minor | Milestone: | |
Component: | core | Version: | |
Keywords: | prop | Cc: | |
Blocked by: | Blocking: |
Description (last modified by )
On Line 318, inside the prop function, we are checking "if ( value.constructor == Number....". This could throw an error in some scenarios where value has no properties at all. For me, this happened here,
$(document).ready(function() { $("form.valdiate").each(function() { $(this).attr({ target: $(this).attr("onsubmit")}); // very weird way for a callback after form validation:) $(this).attr({ onsubmit: ""}); $(this).validate(); }); });
Change History (1)
comment:1 Changed 16 years ago by
Description: | modified (diff) |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Fixed in revision 1241.