Event handler for form buttons, overrides table actions etc

This commit is contained in:
Thomas Gelf 2014-03-07 17:12:44 +00:00
parent 3286dfe202
commit d60d3d4193
1 changed files with 2 additions and 0 deletions

View File

@ -80,6 +80,8 @@
// We treat tr's with a href attribute like links
$(document).on('click', 'tr[href]', { self: this }, this.linkClicked);
$(document).on('click', 'button', { self: this }, this.submitForm);
// We catch all form submit events
$(document).on('submit', 'form', { self: this }, this.submitForm);