diff options
author | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-16 17:58:19 +0000 |
---|---|---|
committer | pete <pete@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-08-16 17:58:19 +0000 |
commit | 35f682f5ef6263e5cb5e0b06b77dd3b77177925d (patch) | |
tree | 02fb78ac1a65a84b43a592db49f8dfa0026ff6b7 /mod/profile/views/default | |
parent | b6e69c16f11efa6b6043e658a99f97630283505f (diff) | |
download | elgg-35f682f5ef6263e5cb5e0b06b77dd3b77177925d.tar.gz elgg-35f682f5ef6263e5cb5e0b06b77dd3b77177925d.tar.bz2 |
tools menu removed dynamic z-index
git-svn-id: https://code.elgg.org/elgg/trunk@1975 36083f99-b078-4883-b0ff-0f9b5a30f544
Diffstat (limited to 'mod/profile/views/default')
-rw-r--r-- | mod/profile/views/default/profile/javascript.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/mod/profile/views/default/profile/javascript.php b/mod/profile/views/default/profile/javascript.php index 2620956b3..78cfb396c 100644 --- a/mod/profile/views/default/profile/javascript.php +++ b/mod/profile/views/default/profile/javascript.php @@ -62,12 +62,12 @@ function setup_avatar_menu() { .fadeIn('normal');
}
- // fix for z-index / jquery bug in IE - TO DO: wrap this in a conditional statement - no need to do this calculation for other browsers
- $(this).css("z-index", parseInt( new Date().getTime()/1000 ));
- avatar.css("z-index", parseInt( new Date().getTime()/1000 ));
- submenu.css("z-index", parseInt( new Date().getTime()/1000 ));
+ // fix for z-index / jquery bug
+ //$(this).css("z-index", parseInt( new Date().getTime()/100000000 ));
+ //avatar.css("z-index", parseInt( new Date().getTime()/100000000 ));
+ //submenu.css("z-index", parseInt( new Date().getTime()/100000000 ));
- //alert("z-index = " +avatar.css("z-index"));
+ //alert("submenu z-index = " +submenu.css("z-index"));
// change arrow to 'on' state
$(this).attr('src','<?php echo $vars['url']; ?>_graphics/avatar_menu_arrow_open.gif');
|