mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-25 20:58:55 +00:00
15 lines
364 B
JavaScript
15 lines
364 B
JavaScript
(function($) { // Avoid conflicts with other libraries
|
|
|
|
"use strict";
|
|
|
|
function avatar_simplify() {
|
|
$('.[class^="avatar_option_"]').hide();
|
|
|
|
var selected = $('#avatar_driver').val();
|
|
$('.avatar_option_' + selected).show();
|
|
}
|
|
|
|
avatar_simplify();
|
|
$('#avatar_driver').bind('change', avatar_simplify);
|
|
|
|
})(jQuery); // Avoid conflicts with other libraries
|