phpbb/phpBB/styles/subsilver2/template/avatars.js
Marc Alexander d8510356d6 [feature/avatars] Add subsilver2 support
This implementation might not be perfect though.

PHPBB3-10018
2012-11-18 20:47:29 +01:00

15 lines
356 B
JavaScript

(function($) { // Avoid conflicts with other libraries
"use strict";
function avatar_simplify() {
$('.[class^="av_option_"]').hide();
var selected = $('#avatar_driver').val();
$('.av_option_' + selected).show();
}
avatar_simplify();
$('#avatar_driver').bind('change', avatar_simplify);
})(jQuery); // Avoid conflicts with other libraries