aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/avatars.js
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/adm/style/avatars.js')
-rw-r--r--phpBB/adm/style/avatars.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/avatars.js b/phpBB/adm/style/avatars.js
index 882bcfe36d..a53814c15f 100644
--- a/phpBB/adm/style/avatars.js
+++ b/phpBB/adm/style/avatars.js
@@ -2,14 +2,14 @@
"use strict";
-function avatar_simplify() {
+function avatar_hide() {
$('#avatar_options > div').hide();
var selected = $('#avatar_driver').val();
$('#avatar_option_' + selected).show();
}
-avatar_simplify();
-$('#avatar_driver').bind('change', avatar_simplify);
+avatar_hide();
+$('#avatar_driver').bind('change', avatar_hide);
})(jQuery); // Avoid conflicts with other libraries