summaryrefslogtreecommitdiffstats
path: root/templates/groupList.html
diff options
context:
space:
mode:
authorirgendwie <alexwegoo@gmail.com>2016-03-25 13:49:42 +0100
committerirgendwie <alexwegoo@gmail.com>2016-03-25 13:49:42 +0100
commit74d720ff618bed7d63f11f6c7e81c220424cecf6 (patch)
tree8e29c413b8ef083b9bc8063f3d3402ee3c5ad89a /templates/groupList.html
parent781f83e6b846c4a0bca05da070e2f93e816e1d4c (diff)
Fix setSelected not correcty called in groupList.html.
Diffstat (limited to 'templates/groupList.html')
-rw-r--r--templates/groupList.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/groupList.html b/templates/groupList.html
index 25db5d2f..0656e48f 100644
--- a/templates/groupList.html
+++ b/templates/groupList.html
@@ -1 +1 @@
-<li ng-repeat="group in ctrl.groups" group data="group" ng-click="setSelected(group)" ng-class="{active: group === ctrl.getSelected}"></li>
+<li ng-repeat="group in ctrl.groups" group data="group" ng-click="ctrl.setSelected(group)" ng-class="{active: group === ctrl.getSelected}"></li>