cd5bee0d44
In an effort to tackle #18437 this removes 2 of the jQuery UI plugins. Highlight & autocomplete, both used once in our code. Highlight was just removed easily, autocomplete was replaced with GL dropdown
33 lines
1.5 KiB
Text
33 lines
1.5 KiB
Text
- page_title "New Branch"
|
|
|
|
- if @error
|
|
.alert.alert-danger
|
|
%button.close{ type: "button", "data-dismiss" => "alert" } ×
|
|
= @error
|
|
%h3.page-title
|
|
New Branch
|
|
%hr
|
|
|
|
= form_tag namespace_project_branches_path, method: :post, id: "new-branch-form", class: "form-horizontal js-create-branch-form js-requires-input" do
|
|
.form-group
|
|
= label_tag :branch_name, nil, class: 'control-label'
|
|
.col-sm-10
|
|
= text_field_tag :branch_name, params[:branch_name], required: true, autofocus: true, class: 'form-control js-branch-name'
|
|
.help-block.text-danger.js-branch-name-error
|
|
.form-group
|
|
= label_tag :ref, 'Create from', class: 'control-label'
|
|
.col-sm-10
|
|
= hidden_field_tag :ref, params[:ref] || @project.default_branch
|
|
= dropdown_tag(params[:ref] || @project.default_branch,
|
|
options: { toggle_class: 'js-branch-select wide',
|
|
filter: true, dropdown_class: "dropdown-menu-selectable", placeholder: "Search branches",
|
|
data: { selected: params[:ref] || @project.default_branch, field_name: 'ref' } })
|
|
.help-block Existing branch name, tag, or commit SHA
|
|
.form-actions
|
|
= button_tag 'Create branch', class: 'btn btn-create', tabindex: 3
|
|
= link_to 'Cancel', namespace_project_branches_path(@project.namespace, @project), class: 'btn btn-cancel'
|
|
|
|
:javascript
|
|
var availableRefs = #{@project.repository.ref_names.to_json};
|
|
|
|
new NewBranchForm($('.js-create-branch-form'), availableRefs)
|