mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
e711290d8b
Had to do some manual fixing of the app.js file due to misplaced comments
25 lines
537 B
JavaScript
25 lines
537 B
JavaScript
import {Component} from './component';
|
|
|
|
/**
|
|
* Submit on change
|
|
* Simply submits a parent form when this input is changed.
|
|
*/
|
|
export class SubmitOnChange extends Component {
|
|
|
|
setup() {
|
|
this.filter = this.$opts.filter;
|
|
|
|
this.$el.addEventListener('change', event => {
|
|
if (this.filter && !event.target.matches(this.filter)) {
|
|
return;
|
|
}
|
|
|
|
const form = this.$el.closest('form');
|
|
if (form) {
|
|
form.submit();
|
|
}
|
|
});
|
|
}
|
|
|
|
}
|