(bug 42384) Don't show the tooltip if the ULS panel is on
Change-Id: I199d2b0c84f2b682d7b698faff443504207ac466
This commit is contained in:
@@ -297,8 +297,12 @@
|
|||||||
|
|
||||||
// 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
|
||||||
|
if ( !$ulsTrigger.data( 'uls' ).shown ) {
|
||||||
showTipsy( 3000 );
|
showTipsy( 3000 );
|
||||||
|
}
|
||||||
} );
|
} );
|
||||||
|
|
||||||
// hide the tooltip when clicked on uls trigger
|
// hide the tooltip when clicked on uls trigger
|
||||||
$ulsTrigger.on( 'click', function () {
|
$ulsTrigger.on( 'click', function () {
|
||||||
hideTipsy();
|
hideTipsy();
|
||||||
|
|||||||
Reference in New Issue
Block a user