Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Léo-Paul Géneau
gitlab-ce
Commits
5efb0a95
Commit
5efb0a95
authored
May 11, 2017
by
Douwe Maan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Paste a copied MR source branch name as code when pasted into a GFM form
parent
e65d9326
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletion
+13
-1
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_header.js
...s/vue_merge_request_widget/components/mr_widget_header.js
+9
-1
changelogs/unreleased/dm-copy-mr-source-branch-as-gfm.yml
changelogs/unreleased/dm-copy-mr-source-branch-as-gfm.yml
+4
-0
No files found.
app/assets/javascripts/vue_merge_request_widget/components/mr_widget_header.js
View file @
5efb0a95
...
...
@@ -12,6 +12,14 @@ export default {
commitsText
()
{
return
gl
.
text
.
pluralize
(
'
commit
'
,
this
.
mr
.
divergedCommitsCount
);
},
branchNameClipboardData
()
{
// This supports code in app/assets/javascripts/copy_to_clipboard.js that
// works around ClipboardJS limitations to allow the context-specific copy/pasting of plain text or GFM.
return
JSON
.
stringify
({
text
:
this
.
mr
.
sourceBranch
,
gfm
:
'
`
'
+
this
.
mr
.
sourceBranch
+
'
`
'
});
}
},
methods
:
{
isBranchTitleLong
(
branchTitle
)
{
...
...
@@ -71,7 +79,7 @@ export default {
<button
class="btn btn-transparent btn-clipboard has-tooltip"
data-title="Copy branch name to clipboard"
:data-clipboard-text="
mr.sourceBranch
">
:data-clipboard-text="
branchNameClipboardData
">
<i
aria-hidden="true"
class="fa fa-clipboard"></i>
...
...
changelogs/unreleased/dm-copy-mr-source-branch-as-gfm.yml
0 → 100644
View file @
5efb0a95
---
title
:
Paste a copied MR source branch name as code when pasted into a GFM form
merge_request
:
author
:
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment