hugo-theme-minima/assets/js/selectable.js
2023-05-12 20:30:35 +08:00

8 lines
No EOL
195 B
JavaScript

import * as params from '@params';
export function setup_selectable () {
const selectable = params.selectable
if (!selectable) {
document.documentElement.style = 'user-select:none'
}
}