mirror of
https://github.com/wallabag/wallabag.git
synced 2025-06-27 16:36:00 +00:00
17 lines
344 B
JavaScript
17 lines
344 B
JavaScript
|
import { Controller } from '@hotwired/stimulus';
|
||
|
import M from '@materializecss/materialize';
|
||
|
|
||
|
export default class extends Controller {
|
||
|
connect() {
|
||
|
this.instance = M.Dropdown.init(this.element, {
|
||
|
hover: false,
|
||
|
coverTrigger: false,
|
||
|
constrainWidth: false,
|
||
|
});
|
||
|
}
|
||
|
|
||
|
disconnect() {
|
||
|
this.instance.destroy();
|
||
|
}
|
||
|
}
|