// removed hard-coded space before ellipsis (...) in English installer steps

This commit is contained in:
djfm
2013-10-31 08:29:05 +00:00
parent a8a204edf3
commit 7812731095

View File

@@ -31,7 +31,7 @@ function process_install(step)
if (!step)
step = process_steps[0];
$('.installing').hide().html(step.lang + ' ...').fadeIn('slow');
$('.installing').hide().html(step.lang + '...').fadeIn('slow');
$.ajax({
url: 'index.php',
@@ -81,7 +81,7 @@ function process_install(step)
function process_install_subtasks(step)
{
$('.installing').hide().html(step.lang+' ...').fadeIn('slow');
$('.installing').hide().html(step.lang+'...').fadeIn('slow');
process_install_subtask(step, 0);
}