mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
BUGFIX #5216 Installer has issues with click handlers applied to the entire li, be more specific and apply it to the label and input instead (from r101167)
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@111966 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
30d4bc29f9
commit
f8a5282055
@ -15,15 +15,16 @@ $(document).ready(function() {
|
|||||||
/**
|
/**
|
||||||
* Hide all existing database warnings, and show only current one
|
* Hide all existing database warnings, and show only current one
|
||||||
*/
|
*/
|
||||||
$('#database_selection li').click(function(e) {
|
$('#database_selection li label, input').click(function(e) {
|
||||||
$('.dbfields').hide();
|
$('.dbfields').hide();
|
||||||
// only show fields if there's no db error
|
// only show fields if there's no db error
|
||||||
if(!$('.databaseError', this).length) $('.dbfields', this).show();
|
if(!$('.databaseError', $(this).parent()).length) $('.dbfields', $(this).parent()).show();
|
||||||
$('.databaseError').hide();
|
$('.databaseError').hide();
|
||||||
$('.databaseError', this).show();
|
$('.databaseError', $(this).parent()).show();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Select first
|
// Select first
|
||||||
$('#database_selection li input:checked').parents('li:first').click();
|
$('#database_selection li input:checked').siblings('label').click();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Install button
|
* Install button
|
||||||
|
Loading…
x
Reference in New Issue
Block a user