Can some advise what the best approach is for listening for the sync event on my collection. Should it be on or listenTo, kind of confused by what's right.
this.collection.on('sync', this.render, this);
// or
this.listenTo(this.collection, 'sync', this.render);