#8670 closed bug (fixed)
null reference when using effects
Reported by: | 0cis32f | Owned by: | Corey Frang |
---|---|---|---|
Priority: | blocker | Milestone: | 1.9.1 |
Component: | ui.effects.core | Version: | 1.9.0 |
Keywords: | regression | Cc: | |
Blocked by: | Blocking: |
Description
In the 1.8 version i used to pass null for the options parameter in show method e.g.
$(el).show("blind", null, 600, null);
now it says options is null here :
effect.complete = callback || options.complete;
line of code 15606
probably missing an if not null check
Change History (6)
comment:1 Changed 10 years ago by
comment:2 Changed 10 years ago by
Keywords: | regression added |
---|---|
Milestone: | 1.10.0 → 1.9.1 |
Priority: | minor → blocker |
Status: | new → open |
comment:4 Changed 10 years ago by
Owner: | set to Corey Frang |
---|---|
Status: | open → assigned |
comment:5 Changed 10 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
Effects: Allow 'null' for options - Fixes #8670 - null reference when using effects - Closes gh-783
Changeset: 8b76684a92d7340175284bb369426f0164673b0a
Note: See
TracTickets for help on using
tickets.
Please address this as soon as possible. We have a lot of instances where we pass
null
for options into show() method.Changing them all to pass
undefined
or usingshow(options)
overload shouldn't be a requirement.It could be fixed with a change on one line from:
to this or equivalent: