diff options
author | Morris Jobke <hey@morrisjobke.de> | 2016-06-27 10:42:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-06-27 10:42:35 +0200 |
commit | b9edcd78bf25249ab32fed32519d3a1d1c083e6d (patch) | |
tree | d850bece74d6a36990c088d3cbf5bf4061a28a70 /settings | |
parent | 93f29f57c50510c01fca686fa2779f3e0e620b7d (diff) | |
parent | 9524115c2c33b5785255f27b09b3ca1899f798eb (diff) | |
download | nextcloud-server-b9edcd78bf25249ab32fed32519d3a1d1c083e6d.tar.gz nextcloud-server-b9edcd78bf25249ab32fed32519d3a1d1c083e6d.zip |
Merge pull request #25252 from owncloud/authtoken-removetooltipondisconnect
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 bfafee8243f..8fc23bd490e 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')); |