diff options
Diffstat (limited to 'chimere/static/saclay/js/interface.js')
| -rw-r--r-- | chimere/static/saclay/js/interface.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chimere/static/saclay/js/interface.js b/chimere/static/saclay/js/interface.js index 2e37f09..cd30561 100644 --- a/chimere/static/saclay/js/interface.js +++ b/chimere/static/saclay/js/interface.js @@ -314,6 +314,11 @@ $(function(){ $("#mobile-footer-open-img").click(function(event){ $("body").removeClass('mobile-footer-hidden'); }); + $(document).on('focusin', function(e) { + if ($(e.target).closest(".mce-window").length) { + e.stopImmediatePropagation(); + } + }); }); function change_routing_speed(){ |
