Fix angular route urls.

This commit is contained in:
Alexis Lahouze 2017-06-10 18:08:31 +02:00
parent d24da8d56b
commit c3daad9cd7
2 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@
<div class="container-fluid">
<!-- Brand -->
<div class="navbar-header">
<a class="navbar-brand" href="#/accounts">&nbsp;Accountant</a>
<a class="navbar-brand" href="#!/accounts">&nbsp;Accountant</a>
</div>
</div>
</nav>

View File

@ -41,7 +41,7 @@
class="form-inline" ng-class="rowClass(account)"
ng-repeat="account in accountsCtrl.accounts | orderBy:'name'" ng-init="account.getSolds()">
<td>
<a href="#/account/{{ account.id }}/operations">{{ account.name }}</a>
<a href="#!/account/{{ account.id }}/operations">{{ account.name }}</a>
</td>
<td>
@ -83,7 +83,7 @@
<!-- Open account scheduler. -->
<a class="btn btn-default"
ng-if="account.id"
href="#/account/{{ account.id }}/scheduler">
href="#!/account/{{ account.id }}/scheduler">
<span class="fa fa-clock-o"></span>
</a>
</div>