관리자: 리디자인 7, gnb 작업 중
This commit is contained in:
@ -20,6 +20,31 @@ if (!defined('_GNUBOARD_')) exit;
|
||||
|
||||
<script src="<?=G4_ADMIN_URL?>/admin.js"></script>
|
||||
|
||||
<script>
|
||||
$(function(){
|
||||
// 주메뉴
|
||||
var $gnb = $('.gnb_1depth a');
|
||||
$gnb.hover(
|
||||
function() {
|
||||
$(this).parent().toggleClass('gnb_1depth_over');
|
||||
},
|
||||
function() {
|
||||
$(this).parent().toggleClass('gnb_1depth_over');
|
||||
}
|
||||
);
|
||||
$gnb.focus(
|
||||
function() {
|
||||
$(this).parent().toggleClass('gnb_1depth_over');
|
||||
}
|
||||
);
|
||||
$gnb.focusout(
|
||||
function() {
|
||||
$(this).parent().toggleClass('gnb_1depth_over');
|
||||
}
|
||||
);
|
||||
});
|
||||
</script>
|
||||
|
||||
<?
|
||||
include_once(G4_PATH.'/tail.sub.php');
|
||||
?>
|
||||
Reference in New Issue
Block a user