mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-12 01:46:55 +08:00
Merge pull request #1385 from mlorb/ml-sci-2866
Fix in app help window does not close in some cases [SCI-2866]
This commit is contained in:
commit
de803e70a8
1 changed files with 6 additions and 0 deletions
|
@ -79,6 +79,12 @@
|
|||
});
|
||||
});
|
||||
}
|
||||
|
||||
$(document.body).on('click', function() {
|
||||
$('.help_tooltips').each(function(i, obj) {
|
||||
$(obj).popover('hide');
|
||||
});
|
||||
});
|
||||
};
|
||||
|
||||
$(document).on('turbolinks:load', function() {
|
||||
|
|
Loading…
Reference in a new issue