diff options
author | Vincent Petry <pvince81@owncloud.com> | 2016-06-23 18:30:45 +0200 |
---|---|---|
committer | Vincent Petry <pvince81@owncloud.com> | 2016-06-23 18:30:45 +0200 |
commit | 9524115c2c33b5785255f27b09b3ca1899f798eb (patch) | |
tree | b895fe9b2397e50fcb5b55c974943e5e6a2b8507 /settings | |
parent | cc2aec11af4df1cdc98f12036e59d7fbace19265 (diff) | |
download | nextcloud-server-9524115c2c33b5785255f27b09b3ca1899f798eb.tar.gz nextcloud-server-9524115c2c33b5785255f27b09b3ca1899f798eb.zip |
Remove tooltip when disconnecting token
Diffstat (limited to 'settings')
-rw-r--r-- | settings/js/authtoken_view.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/settings/js/authtoken_view.js b/settings/js/authtoken_view.js index da5861689a0..61ca2f94745 100644 --- a/settings/js/authtoken_view.js +++ b/settings/js/authtoken_view.js @@ -220,6 +220,8 @@ var destroyingToken = token.destroy(); + $row.find('.icon-delete').tooltip('hide'); + var _this = this; $.when(destroyingToken).fail(function() { OC.Notification.showTemporary(t('core', 'Error while deleting the token')); |