freenetis-github/application/views/js/settings_users.php @ 18ac9009
18ac9009 | Ondřej Fibich | <?php
|
|
/**
|
|||
* Settings users javascript view.
|
|||
*/
|
|||
// IDE complementation
|
|||
if (FALSE): ?><script type="text/javascript"><?php endif
|
|||
?>
|
|||
$('#users_birthday_empty_enabled').live('change', function()
|
|||
{
|
|||
if ($(this).is(':checked'))
|
|||
{
|
|||
$('#members_age_min_limit').parent().parent().show();
|
|||
}
|
|||
else
|
|||
{
|
|||
$('#members_age_min_limit').parent().parent().hide();
|
|||
}
|
|||
}).change();
|
|||