Fix: Uncaught TypeError: Cannot read property 'shown' of undefined

Bug: 49103
Change-Id: Iecaa078835777625eca5d35dbb6ece19de1e8b29
This commit is contained in:
Santhosh Thottingal
2013-06-04 17:25:16 +05:30
parent cfa02f2204
commit 18fe9e8b86

View File

@@ -211,7 +211,7 @@
// manually show the tooltip // manually show the tooltip
$ulsTrigger.on( 'mouseover', function () { $ulsTrigger.on( 'mouseover', function () {
// show only if the ULS panel is not shown // show only if the ULS panel is not shown
if ( !$ulsTrigger.data( 'uls' ).shown ) { if ( !$( '.uls-menu:visible' ).length ) {
showTipsy( 3000 ); showTipsy( 3000 );
} }
} ); } );