#5581 closed bug (fixed)
_setOption being called with 'self' rather than 'this'
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | blocker | Milestone: | 1.8.2 |
Component: | ui.sortable | Version: | 1.8.1 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
In the _setOption method the following line appears:
$.Widget.prototype._setOption.apply(self, arguments); (line 3049 in the current full source code library)
Under some complex conditions in our code, self points to the window, not the sortable object. Changing 'self' to 'this' makes everything good.
Note: I haven't spent enough time in this code to be that this change is valid. If it's really required, maybe I can produce a test case that shows the problem, but at this point, the code is intertwined with a jquery.linkselect
Change History (3)
comment:1 Changed 13 years ago by
Milestone: | TBD → 1.9 |
---|---|
Priority: | major → blocker |
comment:2 Changed 13 years ago by
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:3 Changed 13 years ago by
Milestone: | 1.9 → 1.8.2 |
---|
Note: See
TracTickets for help on using
tickets.
Fixed in a4488af