Styling selectables

Styling selectables


Hi -
At the moment I don't think you can style the lasso in a selectable
with css, as the helper doesn't have an assigned class like the other
components. It would also be useful for the helper to have an id so
you could grab the current dimensions of the lasso.
I think this can be fixed by changing line 55:
        this.helper = $(document.createElement('div')).css({border:'1px
dotted black'});
to:
        this.helper = $(document.createElement('div')).css({border:'1px
dotted black'});
        this.helper.addClass("ui-selectable-helper");
        this.helper.attr( { id:'ui-selectable-helper' } );
... but I'm not confident enough about how everything works in jquery
to make this change in svn. If this looks OK could someone
knowledgeable get this put into the next version?
Tom