Merge pull request #8212 from dmedvinsky/fix-url-field
Fix auto-selection of URL field with X11 selection
This commit is contained in:
commit
5456b00f27
3 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
||||||
Please view this file on the master branch, on stable branches it's out of date.
|
Please view this file on the master branch, on stable branches it's out of date.
|
||||||
|
|
||||||
v 7.11.0 (unreleased)
|
v 7.11.0 (unreleased)
|
||||||
-
|
- Fix clone URL field and X11 Primary selection (Dmitry Medvinsky)
|
||||||
-
|
-
|
||||||
-
|
-
|
||||||
-
|
-
|
||||||
|
|
|
@ -115,8 +115,8 @@ if location.hash
|
||||||
window.addEventListener "hashchange", shiftWindow
|
window.addEventListener "hashchange", shiftWindow
|
||||||
|
|
||||||
$ ->
|
$ ->
|
||||||
# Click a .one_click_select field, select the contents
|
# Click a .js-select-on-focus field, select the contents
|
||||||
$(".one_click_select").on 'click', -> $(@).select()
|
$(".js-select-on-focus").on "focusin", -> $(this).select()
|
||||||
|
|
||||||
$('.remove-row').bind 'ajax:success', ->
|
$('.remove-row').bind 'ajax:success', ->
|
||||||
$(this).closest('li').fadeOut()
|
$(this).closest('li').fadeOut()
|
||||||
|
|
|
@ -15,7 +15,7 @@
|
||||||
:"data-html" => "true",
|
:"data-html" => "true",
|
||||||
:"data-container" => "body"}
|
:"data-container" => "body"}
|
||||||
= gitlab_config.protocol.upcase
|
= gitlab_config.protocol.upcase
|
||||||
= text_field_tag :project_clone, default_url_to_repo(project), class: "one_click_select form-control", readonly: true
|
= text_field_tag :project_clone, default_url_to_repo(project), class: "js-select-on-focus form-control", readonly: true
|
||||||
- if project.kind_of?(Project)
|
- if project.kind_of?(Project)
|
||||||
.input-group-addon
|
.input-group-addon
|
||||||
.visibility-level-label.has_tooltip{'data-title' => "#{visibility_level_label(project.visibility_level)} project" }
|
.visibility-level-label.has_tooltip{'data-title' => "#{visibility_level_label(project.visibility_level)} project" }
|
||||||
|
|
Loading…
Reference in a new issue