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

13 lines
359 B
JavaScript
Raw Permalink Normal View History

(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
content.querySelectorAll('img').forEach(image => {
image.classList.add('img-fluid');
});
});
})();