summaryrefslogtreecommitdiffstats
path: root/templates
diff options
context:
space:
mode:
authorJohn Molakvoæ <skjnldsv@users.noreply.github.com>2018-04-12 13:56:49 +0200
committerGitHub <noreply@github.com>2018-04-12 13:56:49 +0200
commit69fd37d80b4f89c66bdb673fc7c0d5ad065a71c8 (patch)
tree858378b04dd915e5ea683f044b45631a47d871dc /templates
parenta88e2cb690a57b7875c4c2b177bbe7314e4d62da (diff)
parentc150e09bd4c796631c430e5aaac3336165e13dc8 (diff)
Merge pull request #541 from nextcloud/fix-issue-183
Fix issue 183
Diffstat (limited to 'templates')
-rw-r--r--templates/avatar.html11
1 files changed, 7 insertions, 4 deletions
diff --git a/templates/avatar.html b/templates/avatar.html
index c09024ca..fd226c61 100644
--- a/templates/avatar.html
+++ b/templates/avatar.html
@@ -2,8 +2,11 @@
<img ng-show="contact.photo()!==undefined" class="contactdetails__logo avatar" id="contact-avatar" data-ng-src="{{contact.photo()}}" ng-click="ctrl.openPhoto()" />
<div class="avatar-options">
<input type="file" id="avatar-upload" class="hidden" accept="image/*" />
- <label for="avatar-upload" class="icon-upload-white"></label>
- <div class="icon-delete-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.removePhoto()"></div>
- <div class="icon-fullscreen-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.openPhoto()"></div>
- <div class="icon-download-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.downloadPhoto()"></div>
+ <label for="avatar-upload" class="icon-upload-white" tooltip-placement="top" uib-tooltip="{{ctrl.t.uploadNewPhoto}}" tooltip-append-to-body="true"></label>
+ <div class="icon-delete-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.removePhoto()"
+ tooltip-placement="top" uib-tooltip="{{ctrl.t.deletePhoto}}" tooltip-append-to-body="true"></div>
+ <div class="icon-fullscreen-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.openPhoto()"
+ tooltip-placement="top" uib-tooltip="{{ctrl.t.closePhoto}}" tooltip-append-to-body="true"></div>
+ <div class="icon-download-white" ng-show="contact.photo()!==undefined" ng-click="ctrl.downloadPhoto()"
+ tooltip-placement="top" uib-tooltip="{{ctrl.t.downloadPhoto}}" tooltip-append-to-body="true"></div>
</div>