mirror of
https://github.com/itflow-org/itflow
synced 2026-08-24 08:25:14 +00:00
12 lines
381 B
JavaScript
12 lines
381 B
JavaScript
document.addEventListener('DOMContentLoaded', function () {
|
|
// Add class to tables
|
|
document.querySelectorAll('div.prettyContent table').forEach(function (el) {
|
|
el.classList.add('table');
|
|
});
|
|
|
|
// Add img-fluid class to img tags
|
|
document.querySelectorAll('div.prettyContent img').forEach(function (el) {
|
|
el.classList.add('img-fluid');
|
|
});
|
|
});
|