* Fix bug #24697.
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
$(document).ready(function()
|
||||
{
|
||||
$('#agree').change(function(){$('.btn-install').attr('disabled', !$(this).prop('checked'));});
|
||||
$('#agree').change(function()
|
||||
{
|
||||
$('.btn-install').attr('disabled', !$(this).prop('checked'));
|
||||
$('.btn-install').css('pointer-events', $(this).prop('checked') ? 'auto' : 'none');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user