Files
documentation/extensions/odoo_theme/static/js/layout.js
T

18 lines
569 B
JavaScript
Raw Normal View History

2021-04-30 12:40:29 +02:00
(function ($) {
document.addEventListener('DOMContentLoaded', function () {
const content = document.getElementById('o_content');
// 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');
});
// 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
});
})();