aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/adm/style/avatars.js
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-05-11 10:51:36 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-05-11 10:51:36 +0200
commitf861df10a13ed0ee3573737a3c14aa7af070a447 (patch)
tree7c9e18e9ab43653e166739b9392c2f8234ade889 /phpBB/adm/style/avatars.js
parent243cce0350b8c64e0d22d8cf49dc1912f5f91f82 (diff)
parent6cd7abe2557336a88db0220603c83743f1291642 (diff)
downloadforums-f861df10a13ed0ee3573737a3c14aa7af070a447.tar
forums-f861df10a13ed0ee3573737a3c14aa7af070a447.tar.gz
forums-f861df10a13ed0ee3573737a3c14aa7af070a447.tar.bz2
forums-f861df10a13ed0ee3573737a3c14aa7af070a447.tar.xz
forums-f861df10a13ed0ee3573737a3c14aa7af070a447.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/9388] Use "togglable" instead of "toggable" [ticket/9388] Do not nest the <fieldset> tags in the OAuth settings. [ticket/9388] Reopen <fieldset> after auth templates. [ticket/9388] Fix unit tests. [ticket/9388] Use the new toggle function for the avatar type <select>. [ticket/9388] Display only the settings for the selected search backend. [ticket/9388] Display only the settings for the auth method that's selected. [ticket/9388] Add support for making <select> options able to toggle settings.
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