mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-09 03:14:30 -04:00
Bug fixes
This commit is contained in:
parent
7273e39f1e
commit
6ae83e8469
@ -31577,8 +31577,11 @@ function actionListHandler() {
|
|||||||
$(this).closest('tr').find('.tr-action').css('display', 'inline-block');
|
$(this).closest('tr').find('.tr-action').css('display', 'inline-block');
|
||||||
$(this).closest('tr').find('.tr-status').css('display', 'none');
|
$(this).closest('tr').find('.tr-status').css('display', 'none');
|
||||||
}).mouseout(function() {
|
}).mouseout(function() {
|
||||||
$(this).closest('tr').find('.tr-action').css('display', 'none');
|
$dropdown = $(this).closest('tr').find('.tr-action');
|
||||||
|
if (!$dropdown.hasClass('open')) {
|
||||||
|
$dropdown.css('display', 'none');
|
||||||
$(this).closest('tr').find('.tr-status').css('display', 'inline-block');
|
$(this).closest('tr').find('.tr-status').css('display', 'inline-block');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
var NINJA = NINJA || {};
|
var NINJA = NINJA || {};
|
||||||
|
@ -1699,7 +1699,10 @@ function actionListHandler() {
|
|||||||
$(this).closest('tr').find('.tr-action').css('display', 'inline-block');
|
$(this).closest('tr').find('.tr-action').css('display', 'inline-block');
|
||||||
$(this).closest('tr').find('.tr-status').css('display', 'none');
|
$(this).closest('tr').find('.tr-status').css('display', 'none');
|
||||||
}).mouseout(function() {
|
}).mouseout(function() {
|
||||||
$(this).closest('tr').find('.tr-action').css('display', 'none');
|
$dropdown = $(this).closest('tr').find('.tr-action');
|
||||||
|
if (!$dropdown.hasClass('open')) {
|
||||||
|
$dropdown.css('display', 'none');
|
||||||
$(this).closest('tr').find('.tr-status').css('display', 'inline-block');
|
$(this).closest('tr').find('.tr-status').css('display', 'inline-block');
|
||||||
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user