BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
344a2619
Commit
344a2619
authored
Apr 14, 2017
by
Phil Hughes
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'remove-double-newline-for-single-attachments' into 'master'
Only add newlines for multiple uploads Closes #29782 See merge request !10545
parents
ec5ba730
115d1afe
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
5 deletions
+13
-5
dropzone_input.js
app/assets/javascripts/dropzone_input.js
+7
-3
remove-double-newline-for-single-attachments.yml
...released/remove-double-newline-for-single-attachments.yml
+4
-0
issues_spec.rb
spec/features/issues_spec.rb
+2
-2
No files found.
app/assets/javascripts/dropzone_input.js
View file @
344a2619
...
...
@@ -66,7 +66,10 @@ window.DropzoneInput = (function() {
form_textarea
.
focus
();
},
success
:
function
(
header
,
response
)
{
pasteText
(
response
.
link
.
markdown
);
const
processingFileCount
=
this
.
getQueuedFiles
().
length
+
this
.
getUploadingFiles
().
length
;
const
shouldPad
=
processingFileCount
>=
1
;
pasteText
(
response
.
link
.
markdown
,
shouldPad
);
},
error
:
function
(
temp
)
{
var
checkIfMsgExists
,
errorAlert
;
...
...
@@ -123,9 +126,10 @@ window.DropzoneInput = (function() {
}
return
false
;
};
pasteText
=
function
(
text
)
{
pasteText
=
function
(
text
,
shouldPad
)
{
var
afterSelection
,
beforeSelection
,
caretEnd
,
caretStart
,
textEnd
;
var
formattedText
=
text
+
"
\
n
\
n"
;
var
formattedText
=
text
;
if
(
shouldPad
)
formattedText
+=
"
\
n
\
n"
;
caretStart
=
$
(
child
)[
0
].
selectionStart
;
caretEnd
=
$
(
child
)[
0
].
selectionEnd
;
textEnd
=
$
(
child
).
val
().
length
;
...
...
changelogs/unreleased/remove-double-newline-for-single-attachments.yml
0 → 100644
View file @
344a2619
---
title
:
Only add newlines between multiple uploads
merge_request
:
10545
author
:
spec/features/issues_spec.rb
View file @
344a2619
...
...
@@ -601,10 +601,10 @@ describe 'Issues', feature: true do
expect
(
page
.
find_field
(
"issue_description"
).
value
).
to
have_content
'banana_sample'
end
it
'adds double newline to end of attachment markdown'
do
it
"doesn't add double newline to end of a single attachment markdown"
do
dropzone_file
Rails
.
root
.
join
(
'spec'
,
'fixtures'
,
'banana_sample.gif'
)
expect
(
page
.
find_field
(
"issue_description"
).
value
).
to
match
/\n\n$/
expect
(
page
.
find_field
(
"issue_description"
).
value
).
not_
to
match
/\n\n$/
end
end
...
...
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