mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
7 lines
171 B
JavaScript
7 lines
171 B
JavaScript
import { Controller } from '@hotwired/stimulus';
|
|
|
|
export default class extends Controller {
|
|
toggle() {
|
|
this.element.classList.toggle('entry-nav-top--sticky');
|
|
}
|
|
}
|