Skip to content

Commit

Permalink
Item1918: fixed issue when clicking icons in web/user-selectors
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.foswiki.org/trunk/TagsPlugin@5069 0b4bb1d4-4e5a-0410-9cc4-b2b747904278
  • Loading branch information
OliverKrueger authored and OliverKrueger committed Sep 21, 2009
1 parent a584383 commit b7b2799
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pub/System/TagsPlugin/tagsplugin.js
Expand Up @@ -71,7 +71,7 @@
function(event) {
event.preventDefault();
$(".tagsplugin_web_active").removeClass("tagsplugin_web_active");
$(event.target).addClass("tagsplugin_web_active");
$(event.target).closest("a.tagsplugin_web[web]").addClass("tagsplugin_web_active");
tagsplugin_fe_refreshTagCloud();
}
);
Expand All @@ -82,7 +82,7 @@
function(event) {
event.preventDefault();
$(".tagsplugin_user_active").removeClass("tagsplugin_user_active");
$(event.target).addClass("tagsplugin_user_active");
$(event.target).closest("a.tagsplugin_user[user]").addClass("tagsplugin_user_active");
tagsplugin_fe_refreshTagCloud();
}
);
Expand Down

0 comments on commit b7b2799

Please sign in to comment.