diff options
| author | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-20 22:37:51 +0200 |
|---|---|---|
| committer | Jan Tuomi <jans.tuomi@gmail.com> | 2016-01-20 22:37:51 +0200 |
| commit | f0728f43e3ea644438844ba9ba1294b40f528e43 (patch) | |
| tree | 75842ddfd45045275b62a871fd72c3ac5e79f16b | |
| parent | 4f9171b6624660c858d87922894fcf0a6dfb5759 (diff) | |
Fix remove button click area
| -rw-r--r-- | templates/index.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/index.html b/templates/index.html index 7e5c83b..3563065 100644 --- a/templates/index.html +++ b/templates/index.html @@ -47,8 +47,10 @@ </div> <div ng-repeat="person in que"> - <div ng-if="person.uid == uid" ng-click="querm(person.qid);"> - <a href="#" class="removeButton">Poista {{person.name}}</a> + <div ng-if="person.uid == uid"> + <a href="#" class="removeButton" ng-click="querm(person.qid);"> + Poista {{person.name}} + </a> </div> </div> |
