Files
PrestaShop/install-dev/theme/js/welcome.js
jBreux 02eee395f6 // Fix scrolling
git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@12738 b9a71923-0436-4b27-9f14-aed3839534dd
2012-01-26 18:00:03 +00:00

25 lines
716 B
JavaScript

$(document).ready(function()
{
// Submit change of language
$('#langList li input').click(function()
{
var form = $('#mainForm');
form.attr('action', form.attr('action')+'#licenses-agreement');
form.submit();
});
// Desactivate next button if licence checkbox is not checked
if (!$('#set_license').attr('checked'))
{
$('#btNext').addClass('disabled').attr('disabled', true);
}
// Activate / desactivate next button when licence checkbox is clicked
$('#set_license').click(function()
{
if ($(this).attr('checked'))
$('#btNext').removeClass('disabled').attr('disabled', false);
else
$('#btNext').addClass('disabled').attr('disabled', true);
});
});