Skip to content

Commit

Permalink
Fix removing classname.
Browse files Browse the repository at this point in the history
  • Loading branch information
mrubinsk committed Dec 14, 2015
1 parent 965217e commit 17e227d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions ansel/js/ansel.js
Expand Up @@ -333,10 +333,11 @@ AnselCore =
*/
closeView: function(loc, subview)
{
$w('Me Groups Subscribed').each(function(a) {
$w('Me All Subscribed').each(function(a) {
a = $('anselNav' + a);
console.log(a);
if (a) {
a.up().removeClassName('horde-subnavi-active');
a.removeClassName('horde-subnavi-active');
}
});
$w('Images Galleries Map Date Tags').each(function(a) {
Expand Down

0 comments on commit 17e227d

Please sign in to comment.