szurubooru/public_html/media/js/user-edit.js

12 lines
214 B
JavaScript
Raw Normal View History

2014-05-20 19:46:05 +02:00
$(function()
{
$('.avatar-content').parents('.form-row').hide();
$('.avatar-style').click(function()
{
if ($(this).val() == '2'/*custom*/)
{
$('.avatar-content').parents('.form-row').show();
}
});
});