1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-17 15:02:34 +02:00

Using listenTo instead of on

This commit is contained in:
Mark McDowall 2013-08-19 08:12:35 -07:00
parent 6d280122ff
commit 551e6e2e5b
2 changed files with 3 additions and 3 deletions

View File

@ -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);
}, },

View File

@ -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);
}, },