diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-07-29 21:06:59 +0300 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2013-07-29 21:06:59 +0300 |
commit | 8290e7cc70db5f62ae02c4e19c0e6193dafd35f0 (patch) | |
tree | 683389cb8d01e8eb08d3f93242f5267c88a810fa | |
parent | f4205abb7725c96c1a967f5b3779e09c6e94a21d (diff) | |
download | gitlab-ce-8290e7cc70db5f62ae02c4e19c0e6193dafd35f0.tar.gz |
Autofocus to project name at projects#new. Added description field to projects#new. Increased timeout for flash message
-rw-r--r-- | app/assets/javascripts/main.js.coffee | 2 | ||||
-rw-r--r-- | app/views/projects/new.html.haml | 10 |
2 files changed, 9 insertions, 3 deletions
diff --git a/app/assets/javascripts/main.js.coffee b/app/assets/javascripts/main.js.coffee index a991eba3117..f65211c5d13 100644 --- a/app/assets/javascripts/main.js.coffee +++ b/app/assets/javascripts/main.js.coffee @@ -89,7 +89,7 @@ $ -> if (flash = $(".flash-container")).length > 0 flash.click -> $(@).fadeOut() flash.show() - setTimeout (-> flash.fadeOut()), 3000 + setTimeout (-> flash.fadeOut()), 9000 # Disable form buttons while a form is submitting $('body').on 'ajax:complete, ajax:beforeSend, submit', 'form', (e) -> diff --git a/app/views/projects/new.html.haml b/app/views/projects/new.html.haml index 31343f5eb72..e45b2b5757e 100644 --- a/app/views/projects/new.html.haml +++ b/app/views/projects/new.html.haml @@ -7,8 +7,8 @@ = f.label :name do Project name is .input - = f.text_field :name, placeholder: "Example Project", class: "xxlarge", tabindex: 1 - = f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 3 + = f.text_field :name, placeholder: "Example Project", class: "xxlarge", tabindex: 1, autofocus: true + = f.submit 'Create project', class: "btn btn-create project-submit", tabindex: 4 - if current_user.can_select_namespace? .clearfix @@ -29,6 +29,12 @@ = f.text_field :import_url, class: 'xlarge', placeholder: 'https://github.com/randx/six.git' .light URL must be cloneable + .clearfix + = f.label :description do + Description + %span.light (optional) + .input + = f.text_area :description, placeholder: "awesome project", class: "span5", rows: 3, maxlength: 250, tabindex: 3 %p.padded New projects are private by default. You choose who can see the project and commit to repository. |