mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-12 08:07:10 -07:00
Changed buttons on series/logs views to look less cramped
This commit is contained in:
parent
9515c28729
commit
298837f96a
6 changed files with 64 additions and 25 deletions
|
@ -41,6 +41,7 @@ define(
|
|||
regions: {
|
||||
seriesRegion : '#x-series',
|
||||
toolbar : '#x-toolbar',
|
||||
toolbar2 : '#x-toolbar2',
|
||||
footer : '#x-series-footer'
|
||||
},
|
||||
|
||||
|
@ -237,6 +238,12 @@ define(
|
|||
};
|
||||
},
|
||||
|
||||
onShow: function () {
|
||||
this._showToolbar();
|
||||
this._renderView();
|
||||
this._fetchCollection();
|
||||
},
|
||||
|
||||
_showTable: function () {
|
||||
this.currentView = new Backgrid.Grid({
|
||||
collection: this.seriesCollection,
|
||||
|
@ -277,12 +284,6 @@ define(
|
|||
}
|
||||
},
|
||||
|
||||
onShow: function () {
|
||||
this._showToolbar();
|
||||
this._renderView();
|
||||
this._fetchCollection();
|
||||
},
|
||||
|
||||
_fetchCollection: function () {
|
||||
this.seriesCollection.fetch();
|
||||
},
|
||||
|
@ -300,8 +301,6 @@ define(
|
|||
}
|
||||
|
||||
var rightButtons = [
|
||||
this.sortingOptions,
|
||||
this.filteringOptions,
|
||||
this.viewButtons
|
||||
];
|
||||
|
||||
|
@ -313,6 +312,17 @@ define(
|
|||
],
|
||||
context: this
|
||||
}));
|
||||
|
||||
this.toolbar2.show(new ToolbarLayout({
|
||||
right : [
|
||||
this.filteringOptions
|
||||
],
|
||||
left :
|
||||
[
|
||||
this.sortingOptions
|
||||
],
|
||||
context: this
|
||||
}));
|
||||
},
|
||||
|
||||
_showFooter: function () {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue