// Add a lock on install process steps to be sure that a process can't be called if the first one isn't finished

This commit is contained in:
rMalie
2012-02-02 09:31:18 +00:00
parent 7a36bc48d9
commit f6bc520425
3 changed files with 42 additions and 25 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ function process_install(step)
success: function(json)
{
// No error during this step
if (json && json.success)
if (json && json.success === true)
{
$('#process_step_'+step.key).show().addClass('success');
current_step++;