Merge branch 'QA_3_5'

This commit is contained in:
Marc Delisle 2012-11-12 12:44:15 -05:00
commit 1518de6cdf
2 changed files with 8 additions and 0 deletions

View File

@ -76,6 +76,7 @@ VerboseMultiSubmit, ReplaceHelpImg
3.5.5.0 (not yet released)
- bug #3563824 [export] Support Apache's mod_deflate
- bug #3585523 [interface] Inline query editing broken after row update
- bug #3586389 [setup] Cannot switch language in /setup
3.5.4.0 (not yet released)
- bug #3570212 [edit] uuid_short() is a no-arguments function

View File

@ -19,6 +19,13 @@ AJAX.registerTeardown('config.js', function() {
// default values for fields
var defaultValues = {};
/**
* Automatic form submission on change.
*/
$('.autosubmit').live('change', function(e) {
e.target.form.submit();
});
/**
* Returns field type
*