mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
78bf044a7a
- Displays the currently tracked activities in the system. Related to #2173 and #1167
19 lines
374 B
JavaScript
19 lines
374 B
JavaScript
/**
|
|
* Submit on change
|
|
* Simply submits a parent form when this input is changed.
|
|
* @extends {Component}
|
|
*/
|
|
class SubmitOnChange {
|
|
|
|
setup() {
|
|
this.$el.addEventListener('change', () => {
|
|
const form = this.$el.closest('form');
|
|
if (form) {
|
|
form.submit();
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|
|
|
|
export default SubmitOnChange; |