summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2016-03-29 07:35:50 +0200
committerThomas Müller <thomas.mueller@tmit.eu>2016-03-29 07:35:50 +0200
commitfae0beffd843217708cf3b2bc14aa227a3ad018d (patch)
treea191a2431c923a2f18b1c017c338488e9cbbca28 /templates
parent2c5e5742dee5fb6e2c6fbb0e68b3b745fcab2b02 (diff)
parent74d720ff618bed7d63f11f6c7e81c220424cecf6 (diff)
Merge pull request #280 from owncloud/fix-grouplist-template
Fix setSelected not correcty called in groupList.html.
Diffstat (limited to 'templates')
-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>