BigW Consortium Gitlab

show.html.haml 696 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
%h2 Check your .gitlab-ci.yml
%hr

= form_tag ci_lint_path, method: :post, remote: true do
  .control-group
    = label_tag :content, "Content of .gitlab-ci.yml", class: 'control-label'
    .controls
      = text_area_tag :content, nil, class: 'form-control span1', rows: 7, require: true

  .control-group.clearfix
    .controls.pull-left.prepend-top-10
      = submit_tag "Validate", class: 'btn btn-success submit-yml'

14

15
%p.text-center.loading
16
  %i.fa.fa-refresh.fa-spin
17 18 19

.results.prepend-top-20

20 21 22 23 24 25 26 27
:javascript
  $(".loading").hide();
  $('form').bind('ajax:beforeSend', function() {
    $(".loading").show();
  });
  $('form').bind('ajax:complete', function() {
    $(".loading").hide();
  });