aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/styles/subsilver2/template/avatars.js
diff options
context:
space:
mode:
Diffstat (limited to 'phpBB/styles/subsilver2/template/avatars.js')
-rw-r--r--phpBB/styles/subsilver2/template/avatars.js15
1 files changed, 0 insertions, 15 deletions
diff --git a/phpBB/styles/subsilver2/template/avatars.js b/phpBB/styles/subsilver2/template/avatars.js
deleted file mode 100644
index 146aca94d3..0000000000
--- a/phpBB/styles/subsilver2/template/avatars.js
+++ /dev/null
@@ -1,15 +0,0 @@
-(function($) { // Avoid conflicts with other libraries
-
-"use strict";
-
-function avatarHide() {
- $('.[class^="avatar_option_"]').hide();
-
- var selected = $('#avatar_driver').val();
- $('.avatar_option_' + selected).show();
-}
-
-avatarHide();
-$('#avatar_driver').bind('change', avatarHide);
-
-})(jQuery); // Avoid conflicts with other libraries