docbrown/app/javascript/packs/fullScreenModeControl.js

11 lines
335 B
JavaScript

import addFullScreenModeControl from '../utilities/codeFullscreenModeSwitcher';
document.addEventListener('DOMContentLoaded', () => {
const fullscreenActionElements = document.querySelectorAll(
'.js-fullscreen-code-action',
);
if (fullscreenActionElements) {
addFullScreenModeControl(fullscreenActionElements);
}
});