This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
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();
}
});
});