Skip to content

Commit

Permalink
replace "." whith "-" on repo name martin-denizet#2
Browse files Browse the repository at this point in the history
  • Loading branch information
victor committed Jul 12, 2016
1 parent 6598a3e commit 4594993
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/create_git/_form.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
$('#path_to_repository').val(path);
$('#repo_identifier').on('input', function (target) {
if ($(this).val().length > 0) {
$('#path_to_repository').val(path + '.' + $(this).val());
$('#path_to_repository').val(path + '-' + $(this).val());
} else {
$('#path_to_repository').val(path);
}
Expand All @@ -51,4 +51,4 @@
}

});
</script>
</script>

0 comments on commit 4594993

Please sign in to comment.