diff options
author | Marc Alexander <admin@m-a-styles.de> | 2013-01-04 18:13:49 +0100 |
---|---|---|
committer | Marc Alexander <admin@m-a-styles.de> | 2013-01-04 18:13:49 +0100 |
commit | a342e47038dc62cc824efe688e574a1a7dbb0ac8 (patch) | |
tree | f284f857134584f1dd015dd039339e574b9087ff /phpBB/adm/style | |
parent | 8f8527a416be41ba5f2ac984e944f76817260ed2 (diff) | |
download | forums-a342e47038dc62cc824efe688e574a1a7dbb0ac8.tar forums-a342e47038dc62cc824efe688e574a1a7dbb0ac8.tar.gz forums-a342e47038dc62cc824efe688e574a1a7dbb0ac8.tar.bz2 forums-a342e47038dc62cc824efe688e574a1a7dbb0ac8.tar.xz forums-a342e47038dc62cc824efe688e574a1a7dbb0ac8.zip |
[feature/avatars] Change avatar javascript to conform to new coding guidelines
PHPBB3-10018
Diffstat (limited to 'phpBB/adm/style')
-rw-r--r-- | phpBB/adm/style/avatars.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/phpBB/adm/style/avatars.js b/phpBB/adm/style/avatars.js index a53814c15f..26ea24c0db 100644 --- a/phpBB/adm/style/avatars.js +++ b/phpBB/adm/style/avatars.js @@ -2,14 +2,14 @@ "use strict"; -function avatar_hide() { +function avatarHide() { $('#avatar_options > div').hide(); var selected = $('#avatar_driver').val(); $('#avatar_option_' + selected).show(); } -avatar_hide(); -$('#avatar_driver').bind('change', avatar_hide); +avatarHide(); +$('#avatar_driver').bind('change', avatarHide); })(jQuery); // Avoid conflicts with other libraries |