mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-14 02:37:08 -07:00
updated history/missing layout to use collection sync events.
This commit is contained in:
parent
57540f9ecb
commit
2735e41098
2 changed files with 16 additions and 14 deletions
|
@ -77,6 +77,13 @@ define(
|
|||
}
|
||||
],
|
||||
|
||||
|
||||
initialize: function () {
|
||||
this.collection = new HistoryCollection();
|
||||
this.listenTo(this.collection, 'sync', this._showTable);
|
||||
},
|
||||
|
||||
|
||||
_showTable: function (collection) {
|
||||
|
||||
this.history.show(new Backgrid.Grid({
|
||||
|
@ -92,14 +99,8 @@ define(
|
|||
},
|
||||
|
||||
onShow: function () {
|
||||
var self = this;
|
||||
|
||||
this.history.show(new LoadingView());
|
||||
|
||||
var collection = new HistoryCollection();
|
||||
collection.fetch().done(function () {
|
||||
self._showTable(collection);
|
||||
});
|
||||
this.collection.fetch();
|
||||
}
|
||||
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue