Uncaught TypeError: Cannot read property '_listenerId' of undefined
Solution:
You are calling at some point the listenTo() function on an undefined model. For example
// this.model is "undefined"
this.listenTo(this.model, "change:duration", this.updateDuration, this);
Recent Comments