ui.core.js/1.7.2/line 447

ui.core.js/1.7.2/line 447

Hi, I'm new here and not sure how to go about checking the progress of the development code to see whether what seems to me a bug has already been picked up.

I was trying to follow thru with the debugger why a scroll event does not appear to propagate up the food chain in IE6 when I stumbled across this piece of code at line 447 in ui.core.js (1.7.2):

$(document)

.bind('mousemove.'+this.widgetName, this._mouseMoveDelegate)

.bind('mouseup.'+this.widgetName, this._mouseUpDelegate);

Judging by the textual layout employed - as well as by the actions performed - I'd guess that what was meant is this

$(document) {

.bind('mousemove.'+this.widgetName, this._mouseMoveDelegate)

.bind('mouseup.'+this.widgetName, this._mouseUpDelegate); 

                }

How can I check whether this has been picked up?

Thanks.


    • Topic Participants

    • olaf