diff options
author | Callum Macrae <callum@lynxphp.com> | 2012-06-20 22:11:55 +0100 |
---|---|---|
committer | Callum Macrae <callum@lynxphp.com> | 2012-06-20 22:34:17 +0100 |
commit | d6d85dea12a1206bf6f272c0aac0731ce5c69947 (patch) | |
tree | 6230c247ca7be3c0004b2890f087472fe3161d55 /phpBB/styles | |
parent | ba21be88f54599ceb7e49317aa4eb553e59dd3b9 (diff) | |
download | forums-d6d85dea12a1206bf6f272c0aac0731ce5c69947.tar forums-d6d85dea12a1206bf6f272c0aac0731ce5c69947.tar.gz forums-d6d85dea12a1206bf6f272c0aac0731ce5c69947.tar.bz2 forums-d6d85dea12a1206bf6f272c0aac0731ce5c69947.tar.xz forums-d6d85dea12a1206bf6f272c0aac0731ce5c69947.zip |
[ticket/10947] Fixed quickmod autosubmit functionality.
PHPBB3-10947
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/ajax.js | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/styles/prosilver/template/ajax.js b/phpBB/styles/prosilver/template/ajax.js index 54f34e4204..fa31d3268f 100644 --- a/phpBB/styles/prosilver/template/ajax.js +++ b/phpBB/styles/prosilver/template/ajax.js @@ -106,6 +106,10 @@ phpbb.ajaxify({ } }); +$('#quick-mod-select').change(function () { + $('#quickmodform').submit(); +}); + })(jQuery); // Avoid conflicts with other libraries |