Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames Lopez <james@jameslopez.es>2016-07-20 17:09:43 +0300
committerJames Lopez <james@jameslopez.es>2016-07-20 17:09:43 +0300
commitf0603e4cb7cfc043239554857a1143943b50b22f (patch)
tree2658f71c340817d64fce237e1941cfeda8e48517 /app/views/projects/new.html.haml
parent4eb9045ddede6d4b23cb0f9dd9676873c5a21f8c (diff)
added spec, fixed wording
Diffstat (limited to 'app/views/projects/new.html.haml')
-rw-r--r--app/views/projects/new.html.haml6
1 files changed, 3 insertions, 3 deletions
diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml
index 5025542f0f9..facdfcc9447 100644
--- a/app/views/projects/new.html.haml
+++ b/app/views/projects/new.html.haml
@@ -136,12 +136,12 @@
});
$('.btn_import_gitlab_project').attr('disabled',true)
- $('.import_gitlab_project').attr('title', 'Project path required.');
+ $('.import_gitlab_project').attr('title', 'Project path and name required.');
$('.import_gitlab_project').click(function( event ) {
if($('.btn_import_gitlab_project').attr('disabled')) {
event.preventDefault();
- new Flash("Please enter a path for the project to be imported to.");
+ new Flash("Please enter path and name for the project to be imported to.");
}
});
@@ -152,7 +152,7 @@
$(".flash-container").html("")
} else {
$('.btn_import_gitlab_project').attr('disabled',true);
- $('.import_gitlab_project').attr('title', 'Project path required.');
+ $('.import_gitlab_project').attr('title', 'Project path and name required.');
}
});