mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-01 17:38:38 +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');
|
|
}
|
|
}
|