2017-10-17 11:27:15 +02:00

6 lines
182 B
TypeScript

import { AnimeNotifier } from "../AnimeNotifier"
// Toggle sidebar
export function toggleSidebar(arn: AnimeNotifier) {
arn.app.find("sidebar").classList.toggle("sidebar-visible")
}