In the setSelection() routine, line 585:
for ( var n = start; n < end; n++ )
This is stopping too soon - it doesn't include the shift-clicked item.
Needs to be:
for ( var n = start; n <= end; n++ )
Logged In: YES user_id=833483 Originator: NO
correct.
Log in to post a comment.
Logged In: YES
user_id=833483
Originator: NO
correct.