Files
canine/app/javascript/controllers/theme_controller.js
2024-10-05 11:58:53 -07:00

13 lines
336 B
JavaScript

import { Controller } from "@hotwired/stimulus"
export default class extends Controller {
leftbarToggle() {
const html = document.querySelector("html");
if (html.hasAttribute("data-leftbar-hide")) {
html.removeAttribute("data-leftbar-hide")
} else {
html.setAttribute("data-leftbar-hide", "true")
}
}
}