#4366 closed enhancement (fixed)
Deep copy options on init
Reported by: | Scott González | Owned by: | Scott González |
---|---|---|---|
Priority: | minor | Milestone: | 1.8 |
Component: | ui.core | Version: | 1.7 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
The widget factory should deep copy options on init.
Change History (3)
comment:1 Changed 14 years ago by
Owner: | set to scott.gonzalez |
---|---|
Status: | new → assigned |
comment:2 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | assigned → closed |
comment:3 Changed 13 years ago by
The workaround for compatibility with earlier UI releases is this oneliner in your init function:
this.options = $.extend(true, {}, this.options); deep copy
Note: See
TracTickets for help on using
tickets.
Fixed in r2392.