13 lines
359 B
JavaScript
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');
|
|
});
|
|
});
|
|
|
|
})();
|