move Dailies "All" tab to the first position, to make it the default (I hope)

This commit is contained in:
Alice Harris 2014-10-09 21:08:46 +10:00
parent 43d2d1355e
commit 264b16f76b

View file

@ -105,12 +105,12 @@ script(id='templates/habitrpg-tasks.html', type="text/ng-template")
div(bo-if='main && list.type=="daily"', class='tabbable tabs-below')
// remaining/completed tabs
ul.nav.nav-tabs
li(ng-class='{active: list.view == "all"}')
a(ng-click='list.view = "all"')=env.t('all')
li(ng-class='{active: list.view == "remaining"}')
a(ng-click='list.view = "remaining"')=env.t('due')
li(ng-class='{active: list.view == "complete"}')
a(ng-click='list.view = "complete"')=env.t('grey')
li(ng-class='{active: list.view == "all"}')
a(ng-click='list.view = "all"')=env.t('all')
// Todo Tabs
div(bo-if='main && list.type=="todo"', bo-class='{"tabbable tabs-below": list.type=="todo"}')