19 lines
459 B
JavaScript
19 lines
459 B
JavaScript
![]() |
/* $This file is distributed under the terms of the license in /doc/license.txt$ */
|
||
|
|
||
|
$(function(){
|
||
|
|
||
|
$("ul.dropdown li").hover(function(){
|
||
|
|
||
|
$(this).addClass("hover");
|
||
|
$('ul:first',this).css('visibility', 'visible');
|
||
|
|
||
|
}, function(){
|
||
|
|
||
|
$(this).removeClass("hover");
|
||
|
$('ul:first',this).css('visibility', 'hidden');
|
||
|
|
||
|
});
|
||
|
|
||
|
$("ul.dropdown li ul li:has(ul)").find("a:first").append(" » ");
|
||
|
|
||
|
});
|