documentation/extensions/odoo_theme/static/js/layout.js
2021-01-28 21:02:32 +01:00

13 lines
359 B
JavaScript

(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');
});
});
})();