Ticket #3174 (closed enhancement: fixed)
Return on enableSelection and disableSelection
| Reported by: | jneal@… | Owned by: | paul |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.6rc2 |
| Component: | ui.core | Version: | 1.5.2 |
| Keywords: | enableSelection, disableSelection | Cc: | jneal@… |
| Blocking: | Blocked by: |
Description
The enableSelection and disableSelection functions return nothing, and it would be nice if they returned the jQuery selector so that they can support further function chaining. Adding the return would be as simple as...
disableSelection: function(el) {
return $(el).attr('unselectable', 'on').css('MozUserSelect', 'none');
}, enableSelection: function(el) {
return $(el).attr('unselectable', 'off').css('MozUserSelect', );
},
Oh, wouldn't it be nice?
Jonathan
Change History
Note: See
TracTickets for help on using
tickets.

