var _showMoreClick = function(e, boxIndex)
{
var box = _boxes[boxIndex];
def.onShowMoreClick.call(this, box.events);
e.stopPropagation();
}
In the above function, you are missing to pass the boxIndex as the last
parameter into the:
def.onShowMoreClick.call
It should be:
def.onShowMoreClick.call(this, box.events, boxIndex);
Original issue reported on code.google.com by sonukap...@gmail.com on 12 Aug 2009 at 5:08
Original issue reported on code.google.com by
sonukap...@gmail.com
on 12 Aug 2009 at 5:08