This commit is contained in:
Max Lynch
2013-10-08 18:30:24 -05:00
parent 7693f64787
commit 5e48c206ec
5 changed files with 46 additions and 8 deletions

View File

@ -137,7 +137,7 @@
<input type="text" ng-model="newProject.title" placeholder="Create a new list...">
</form>
<list>
<a ng-click="selectProject(project)" class="list-item list-item-primary" ng-class="{active: project.$id == activeProject.project.name()}" ng-repeat="project in projects">
<a ng-click="selectProject(project)" class="list-item list-item-primary" ng-class="{active: project.$id == activeProject.project.name()}" ng-repeat="project in projects">
{{project.title}}
</a>
</list>
@ -153,7 +153,7 @@
<button class="button button-clear button-primary" ng-click="close()">Done</button>
</header>
<main class="content padded has-header">
<list header="GENERAL>
<list header="GENERAL">
<a class="list-item" href="#" ng-click="logout()">Log out</a>
</list>
</main>

View File

@ -6,10 +6,7 @@ angular.module('ionic.todo', [
'ionic.service.modal',
'ionic.service.actionSheet',
'ionic.ui.nav',
'ionic.ui.content',
'ionic.ui.sideMenu',
'ionic.ui.actionSheet',
'ionic.ui',
'firebase',
'ngRoute',