2021-04-30 12:40:29 +02:00
|
|
|
(function ($) {
|
|
|
|
|
|
|
|
|
|
document.addEventListener('DOMContentLoaded', function () {
|
|
|
|
|
const content = document.getElementById('o_content');
|
|
|
|
|
|
2022-06-08 10:09:10 +00:00
|
|
|
// Enforce the presence of the `img-fluid` class on all images in the body.
|
2021-04-30 12:40:29 +02:00
|
|
|
content.querySelectorAll('img').forEach(image => {
|
|
|
|
|
image.classList.add('img-fluid');
|
|
|
|
|
});
|
2022-06-08 10:09:10 +00:00
|
|
|
|
|
|
|
|
// Make all external links open in a new tab by default.
|
|
|
|
|
content.querySelectorAll('a.external').forEach(externalLink => {
|
|
|
|
|
externalLink.setAttribute('target', '_blank');
|
|
|
|
|
})
|
2021-04-30 12:40:29 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
})();
|