diff options
author | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-02-27 22:25:05 +0100 |
---|---|---|
committer | Christoph Wurst <christoph@winzerhof-wurst.at> | 2017-02-27 22:25:05 +0100 |
commit | 3e7e49884efa7af2e34742b50338aabf0df116d4 (patch) | |
tree | c9ec3e13bdf5881bf253b4e08ac0343cdcd48384 /core/js/share.js | |
parent | 019574014702657fa34acac4a631f78e27c20db8 (diff) | |
download | nextcloud-server-3e7e49884efa7af2e34742b50338aabf0df116d4.tar.gz nextcloud-server-3e7e49884efa7af2e34742b50338aabf0df116d4.zip |
Replace deprecated $.tipsy(...) by $.tooltip(...)
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Diffstat (limited to 'core/js/share.js')
-rw-r--r-- | core/js/share.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/js/share.js b/core/js/share.js index 913c78bb732..5bde7e63f36 100644 --- a/core/js/share.js +++ b/core/js/share.js @@ -302,7 +302,7 @@ OC.Share = _.extend(OC.Share || {}, { } action.html('<span> ' + message + '</span>').prepend(icon); if (owner || recipients) { - action.find('.remoteAddress').tipsy({gravity: 's'}); + action.find('.remoteAddress').tooltip({placement: 'top'}); } } else { |