remove
Event fired when items are removed from the list.
handler(event, removed, index)
Handlers registered with can-event-queue/map/map methods on list will be called back when
items are removed from a list.
list.on("remove", function(event, removed, index){ ... });
Parameters
- event
{Event}:An event object.
- removed
{Array}:An array of the items removed from the list.
- index
{Number}:The location where the items were removed.