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.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/phpBB/adm/style/avatars.js b/phpBB/adm/style/avatars.js
deleted file mode 100644
index 26ea24c0db..0000000000
--- a/phpBB/adm/style/avatars.js
+++ /dev/null
@@ -1,15 +0,0 @@
-(function($) { // Avoid conflicts with other libraries
-
-"use strict";
-
-function avatarHide() {
- $('#avatar_options > div').hide();
-
- var selected = $('#avatar_driver').val();
- $('#avatar_option_' + selected).show();
-}
-
-avatarHide();
-$('#avatar_driver').bind('change', avatarHide);
-
-})(jQuery); // Avoid conflicts with other libraries