Using listenTo instead of on

pull/2/head
Mark McDowall 11 years ago
parent 6d280122ff
commit 551e6e2e5b

@ -78,11 +78,11 @@ define(
episode.set({ hideSeriesLink: true, series: options.series }); episode.set({ hideSeriesLink: true, series: options.series });
}); });
this.model.on('sync', function () { this.listenTo(this.model, 'sync', function () {
this._afterSeasonMonitored(); this._afterSeasonMonitored();
}, this); }, this);
this.episodeCollection.on('sync', function () { this.listenTo(this.episodeCollection, 'sync', function () {
this.render(); this.render();
}, this); }, this);
}, },

@ -34,7 +34,7 @@ define(
allFilesDownloaded: allDownloaded allFilesDownloaded: allDownloaded
}); });
this.model.on('sync', function () { this.listenTo(this.model, 'sync', function () {
this.render(); this.render();
}, this); }, this);
}, },

Loading…
Cancel
Save