1 import {Component} from './component';
5 * Simply submits a parent form when this input is changed.
7 export class SubmitOnChange extends Component {
10 this.filter = this.$opts.filter;
12 this.$el.addEventListener('change', event => {
13 if (this.filter && !event.target.matches(this.filter)) {
17 const form = this.$el.closest('form');