> The only thing that was required to do to get demo 6 working is to
> make sure that the array of "sampleObjectItem" is present as this is
> used to define the slide items.
Not so. The example you have up is only fully functional in IE.
The bug is in _class.noobSlide.js:113, ::handleButtons:
handles[i].addEvent(this.handle_event,this.walk.bind(this,[i,true]));
This runs a bound ::walk on mouseEnter, attempting to apply an array
of arguments to it [item = i, manual = true]. But this should be
bindWithEvent (and ::walk needs to expect an event in kind).
As a result of the bug, the slides never change on mouseEnter, since i
= null. Because of the passed-event-vs-window.event difference in IE,
it still works there.
-- Sandy