unbind

  • function
can.Model.unbind  

Stop listening for events on a Model class.

can.Model.unbind(eventType, handler)

Parameters

  1. eventType {String}

    The type of event. It must be "created", "updated", "destroyed".

  2. handler {function()}

    A callback function that was passed to bind.

Returns

{can.Model}

The model constructor function.

unbind(eventType, handler) removes a listener attached with bind.

var handler = function(ev, createdTask){

}
Task.bind("created", handler)
Task.unbind("created", handler)

You have to pass the same function to unbind that you passed to bind.