mirror of
https://github.com/healthchecks/healthchecks.git
synced 2025-04-14 00:49:05 +00:00
7 lines
No EOL
166 B
JavaScript
7 lines
No EOL
166 B
JavaScript
$(function() {
|
|
$("input[data-auto-submit]").on("keyup input", function() {
|
|
if (this.validity.valid) {
|
|
this.form.submit();
|
|
}
|
|
});
|
|
}) |