mirror of
https://github.com/czhu12/canine.git
synced 2025-12-31 16:31:16 -06:00
13 lines
336 B
JavaScript
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")
|
|
}
|
|
}
|
|
}
|