Use initial angular interpolation delimiters.

This commit is contained in:
Alexis Lahouze
2015-07-19 15:12:17 +02:00
parent 7d63176e7e
commit 28ab2fd7f3
9 changed files with 36 additions and 66 deletions

View File

@ -1,4 +1,4 @@
{#
<!--
This file is part of Accountant.
Accountant is free software: you can redistribute it and/or modify
@ -13,8 +13,8 @@
You should have received a copy of the GNU Affero General Public License
along with Accountant. If not, see <http://www.gnu.org/licenses/>.
#}
{# vim: set tw=80 ts=2 sw=2 sts=2: #}
-->
<!-- vim: set tw=80 ts=2 sw=2 sts=2: -->
<!DOCTYPE html>
<html lang="fr" ng-app="accountantApp">
<head>
@ -44,33 +44,6 @@
<div class="navbar-header">
<a class="navbar-brand" href="/">&nbsp;Accountant</a>
</div>
<!-- Menu and accounts -->
<ul class="nav navbar-nav">
<!-- Account selection -->
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"
role="button" aria-haspopup="true" aria-expanded="false">
[[selectedAccount.name]]&nbsp;(<span
ng-class="valueClass(selectedAccount, selectedAccount.current)">[[selectedAccount.current]]</span>&nbsp;/&nbsp;<span
ng-class="valueClass(selectedAccount,
selectedAccount.pointed)">[[selectedAccount.pointed]]</span>)
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li ng-class="accountClass(account)" ng-repeat="account in accounts">
<a ng-click="selectAccount(account)" href="#">
[[account.name]]
(<span ng-class="valueClass(account,
account.current)">[[account.current]]</span>&nbsp;/&nbsp;<span
ng-class="valueClass(account,
account.pointed)">[[account.pointed]]</span>)</a>
</li>
</ul>
</li>
</ul><!-- nav -->
</div>
</nav>