mirror of
https://github.com/Readarr/Readarr.git
synced 2026-04-18 21:34:28 -04:00
Changed buttons on series/logs views to look less cramped
This commit is contained in:
@@ -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 () {
|
||||
|
||||
@@ -1,4 +1,7 @@
|
||||
<div id="x-toolbar"></div>
|
||||
<div class="toolbars">
|
||||
<div id="x-toolbar"></div>
|
||||
<div id="x-toolbar2"></div>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="span12">
|
||||
|
||||
Reference in New Issue
Block a user