Skip to content

Commit

Permalink
#47 correct parameter naming according to specification
Browse files Browse the repository at this point in the history
  • Loading branch information
kecso committed Apr 9, 2015
1 parent f0c869f commit 10cdae7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/client/js/Dialogs/Projects/ProjectsDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -525,8 +525,8 @@ define( [
type: type,
projectName: projectName,
seedName: seedName,
branchName: branchName,
commitHash: commitHash
seedBranch: branchName,
seedCommit: commitHash
},
_loader = new LoaderCircles( {"containerElement": $( 'body' )} );

Expand All @@ -539,6 +539,7 @@ define( [
_client.seedProjectAsync( parameters, function ( err ) {
if ( err ) {
_logger.error('Cannot create seed project', err);
_loader.stop();
} else {
_logger.debug('Created new project from seed');
_client.selectProjectAsync(projectName, function (err) {
Expand All @@ -547,9 +548,9 @@ define( [
} else {
_logger.debug('Selected project');
}
_loader.stop();
});
}
_loader.stop();
} );
};

Expand Down

0 comments on commit 10cdae7

Please sign in to comment.