mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-14 19:04:21 +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() {
|
$(document).on('turbolinks:load', function() {
|
||||||
|
|
Loading…
Reference in a new issue