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

new.html.haml « projects « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 02ddc683851fb39e997dab23bb34cde65234c6cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
- content_for(:body_class, "new-project-page")
- content_for(:page_title) do
  .new-project-hodler
    .container
      %h2.icon  
        %span
        New Project

      %div.clear
      = render 'form'

:javascript
  $(function(){
    $("#project_name").change(function(){
      var slug = slugify($(this).val());
      $("#project_code").val(slug);
      $("#project_path").val(slug);
    });
  });

  function slugify(text) {
    return text.replace(/[^-a-zA-Z0-9]+/g, '_').toLowerCase();
  }