Browse Source

Fix whitespace username in the installation form

remotes/origin/stable4
Georg Ehrke 15 years ago
parent
commit
a1af757ef6
  1. 4
      core/js/setup.js

4
core/js/setup.js

@ -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