UI Selectable - start/stop

UI Selectable - start/stop


Richard,
Can we expect 'start' and 'stop' options for Selectables? I
appreciate the new approach of firing events as-you-go, but there are
circumstances where it is much cleaner and much simpler to call
methods a single time on start and/or stop. I've already modified my
local copy of selectable to support start and stop. My implementation
probably isn't how you would do it but it gets the job done.
This is for the start option:
47    $.extend($.ui.selectable.prototype, {
48        plugins: {},
49        start: function(self, ev) {
50            if(typeof this.options != 'undefined' && this.options.start){
51                this.options.start(ev, self);
52            }
Lines 50-52 are the new lines
This is for the stop option:
93            if(typeof options != 'undefined' && options.stop){
94                options.stop(ev, self);
95            }
96        },
97        unselecting: function(self, ev, options) {
Lines 93-95 are the new lines.
Let me know if it would be possible for you to include something akin
to this in order to support start and stop in Selectable.
Thanks in advance.