summaryrefslogtreecommitdiff
path: root/client/simple/src/js/core/nojs.ts
blob: 65c62dd90113f385a27ca5fb07a87fc164ff994c (plain)
1
2
3
4
5
6
7
8
// SPDX-License-Identifier: AGPL-3.0-or-later

import { ready } from "./toolkit.ts";

ready(() => {
  document.documentElement.classList.remove("no-js");
  document.documentElement.classList.add("js");
});