Changed buttons on series/logs views to look less cramped

This commit is contained in:
markus101 2014-02-01 16:32:08 -08:00
parent 9515c28729
commit 298837f96a
6 changed files with 64 additions and 25 deletions

View file

@ -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 () {