Browse Source

Fix whitespace username in the installation form

tags/v3.0
Georg Ehrke 12 years ago
parent
commit
a1af757ef6
1 changed files with 3 additions and 1 deletions
  1. 3
    1
      core/js/setup.js

+ 3
- 1
core/js/setup.js View File

@@ -7,7 +7,9 @@ $(document).ready(function() {
$('#dbhost').hide();
$('#dbhostlabel').hide();
}

$('#adminlogin').change(function(){
$('#adminlogin').val($.trim($('#adminlogin').val()));
});
$('#sqlite').click(function() {
$('#use_other_db').slideUp(250);
$('#dbhost').hide(250);

Loading…
Cancel
Save