diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-08-21 15:05:12 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-08-24 09:22:26 +0200 |
commit | c007b1899708a5cb4dce68087ed33a0c36551877 (patch) | |
tree | e961b73c20cd1cb1bea71ff942019db547a31913 | |
parent | fc7e84440749ea77c2bd69128115e3848d2050f0 (diff) | |
download | sonarqube-c007b1899708a5cb4dce68087ed33a0c36551877.tar.gz sonarqube-c007b1899708a5cb4dce68087ed33a0c36551877.zip |
fix lingering tooltip on the groups page
-rw-r--r-- | server/sonar-web/src/main/js/apps/groups/list-item-view.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/apps/groups/list-item-view.js b/server/sonar-web/src/main/js/apps/groups/list-item-view.js index c09af127003..45ce8b9688a 100644 --- a/server/sonar-web/src/main/js/apps/groups/list-item-view.js +++ b/server/sonar-web/src/main/js/apps/groups/list-item-view.js @@ -5,6 +5,8 @@ define([ './templates' ], function (UpdateView, DeleteView, UsersView) { + var $ = jQuery; + return Marionette.ItemView.extend({ tagName: 'li', className: 'panel panel-vertical', @@ -37,6 +39,7 @@ define([ onUsersClick: function (e) { e.preventDefault(); + $('.tooltip').remove(); this.showUsers(); }, |