[*] Installer : Automatically drop the system compatibility check when everything's alright

// Fixed 'next' button when the page is refreshed
This commit is contained in:
Damien Metzger
2013-02-01 17:47:51 +01:00
parent 3b2be13f2e
commit 7b6b9ceaf6
2 changed files with 9 additions and 1 deletions
+5
View File
@@ -22,4 +22,9 @@ $(document).ready(function()
else
$('#btNext').addClass('disabled').attr('disabled', true);
});
if ($('#set_license').prop('checked'))
$('#btNext').removeClass('disabled').attr('disabled', false);
else
$('#btNext').addClass('disabled').attr('disabled', true);
});