[Jifty-commit] r3095 - jifty/trunk/lib/Jifty/Web

jifty-commit at lists.jifty.org jifty-commit at lists.jifty.org
Wed Apr 4 02:04:02 EDT 2007


Author: hlb
Date: Wed Apr  4 02:03:58 2007
New Revision: 3095

Modified:
   jifty/trunk/lib/Jifty/Web/Menu.pm

Log:
* fix "open" class in menu - active menu item doesn't imply current open item


Modified: jifty/trunk/lib/Jifty/Web/Menu.pm
==============================================================================
--- jifty/trunk/lib/Jifty/Web/Menu.pm	(original)
+++ jifty/trunk/lib/Jifty/Web/Menu.pm	Wed Apr  4 02:03:58 2007
@@ -226,7 +226,7 @@
     my @kids = $self->children;
     my $id   = Jifty->web->serial;
     Jifty->web->out( qq{<li class="toplevel }
-            . ( $self->active ? 'open active' : 'closed' ) . qq{">}
+            . ( $self->active ? 'active' : 'closed' ) . qq{">}
             . qq{<span class="title">} );
     Jifty->web->out( $self->as_link );
     Jifty->web->out(qq{</span>});


More information about the Jifty-commit mailing list