mirror of
https://github.com/phpbb/phpbb.git
synced 2025-05-29 10:39:19 +02:00
16 lines
351 B
JavaScript
16 lines
351 B
JavaScript
(function($) { // Avoid conflicts with other libraries
|
|
|
|
"use strict";
|
|
|
|
function avatar_simplify() {
|
|
$('#av_options > div').hide();
|
|
|
|
var selected = $('#avatar_driver').val();
|
|
$('#av_option_' + selected).show();
|
|
}
|
|
|
|
avatar_simplify();
|
|
$('#avatar_driver').bind('change', avatar_simplify);
|
|
|
|
})(jQuery); // Avoid conflicts with other libraries
|