Add series UI changes

Link back to add series
Existing UI less contrasting
This commit is contained in:
Mark McDowall 2013-06-30 22:58:38 -07:00
parent a163e511ae
commit e283f54567
7 changed files with 63 additions and 21 deletions

View file

@ -19,7 +19,8 @@ define(
},
events: {
'click .x-import': '_importSeries'
'click .x-import': '_importSeries',
'click .x-add-new': '_addSeries'
},
attributes: {
@ -48,6 +49,10 @@ define(
_importSeries: function () {
App.modalRegion.show(this.rootFolderLayout);
},
_addSeries: function () {
this.workspace.show(new AddSeriesView());
}
});
});