Commit a4d4a052 authored by Gergely Ujvari's avatar Gergely Ujvari

Notifications tab stub

This tab will list the user's notifications.
A new tab is better (even if now it is a one element list) because
works differently then the rest of the account data.
parent 37c65e79
......@@ -28,6 +28,7 @@ class AccountController
$scope.$broadcast 'formState', form.$name, '' # Update status btn
$scope.tab = 'account'
# Data for each of the forms
$scope.editProfile = {}
$scope.changePassword = {}
......
<div class="tabbable" ng-controller="AccountController">
<div class="tab-pane" title="Account">
<div class="tabbable"
tab-reveal="['account', 'notifications']"
ng-controller="AccountController"
ng-model="tab"
>
<div class="tab-pane" title="Account" ng-click="tab = 'account'">
<form class="account-form form" name="changePasswordForm" ng-submit="submit(changePasswordForm)" novalidate form-validate>
<h2 class="form-heading"><span>Change Your Password</span></h2>
......@@ -66,4 +70,6 @@
</div>
</form>
</div>
<div class="tab-pane" title="Notifications" ng-click="tab = 'notifications'">
</div>
</div>
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment