Commit b19a1447 authored by Clement Ho's avatar Clement Ho

Merge branch '30665-add-email-button-to-new-issue-by-email' into 'master'

Resolve "Have mailto: link in "Email a new issue to this project""

Closes #30665

See merge request gitlab-org/gitlab-ce!17401
parents 1beea04f 51276e05
......@@ -18,7 +18,14 @@
.email-modal-input-group.input-group
= text_field_tag :issuable_email, email, class: "monospace js-select-on-focus form-control", readonly: true
.input-group-btn
= clipboard_button(target: '#issuable_email')
= clipboard_button(target: '#issuable_email', class: 'btn btn-clipboard btn-transparent hidden-xs')
= mail_to email, class: 'btn btn-clipboard btn-transparent',
subject: _("Enter the #{name} title"),
body: _("Enter the #{name} description"),
title: _('Send email'),
data: { toggle: 'tooltip', placement: 'bottom' } do
= sprite_icon('mail')
%p
= render 'by_email_description'
%p
......
---
title: Add email button to new issue by email
merge_request: 10942
author: Islam Wazery
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment