Changeset 21787
- Timestamp:
- 09/07/2012 10:34:43 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/js/common.js
r21592 r21787 198 198 $('li.wp-has-submenu', menu).hoverIntent({ 199 199 over: function(e){ 200 var b, h, o, f, m = $(this).find('.wp-submenu'), menutop, wintop, maxtop ;201 202 if ( parseInt( m.css('top'), 10 ) > -5 )200 var b, h, o, f, m = $(this).find('.wp-submenu'), menutop, wintop, maxtop, top = parseInt( m.css('top'), 10 ); 201 202 if ( isNaN(top) || top > -5 ) // meaning the submenu is visible 203 203 return; 204 204
Note: See TracChangeset
for help on using the changeset viewer.