UNPKG

framework7

Version:

Full featured mobile HTML framework for building iOS & Android apps

24 lines (22 loc) 454 B
import { document } from 'ssr-window'; import Support from '../../utils/support'; export default { name: 'support', proto: { support: Support, }, static: { support: Support, }, on: { init() { const html = document.querySelector('html'); if (!html) return; const classNames = []; // Add html classes classNames.forEach((className) => { html.classList.add(className); }); }, }, };