1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-04 05:25:01 +02:00
php-phpbb/phpBB/adm/style/avatars.js
2012-11-25 00:54:34 +01:00

16 lines
359 B
JavaScript

(function($) { // Avoid conflicts with other libraries
"use strict";
function avatar_simplify() {
$('#avatar_options > div').hide();
var selected = $('#avatar_driver').val();
$('#avatar_option_' + selected).show();
}
avatar_simplify();
$('#avatar_driver').bind('change', avatar_simplify);
})(jQuery); // Avoid conflicts with other libraries