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