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
Boxiang Sun
gitlab-ce
Commits
64572b53
Commit
64572b53
authored
6 years ago
by
Winnie Hellmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup test for disabling comment submit button
parent
9b4b79ff
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
228 additions
and
95 deletions
+228
-95
app/assets/javascripts/notes.js
app/assets/javascripts/notes.js
+3
-3
spec/javascripts/notes_spec.js
spec/javascripts/notes_spec.js
+225
-92
No files found.
app/assets/javascripts/notes.js
View file @
64572b53
...
@@ -1809,9 +1809,11 @@ export default class Notes {
...
@@ -1809,9 +1809,11 @@ export default class Notes {
}
}
}
}
$closeBtn
.
text
(
$closeBtn
.
data
(
'
originalText
'
));
/* eslint-disable promise/catch-or-return */
/* eslint-disable promise/catch-or-return */
// Make request to submit comment on server
// Make request to submit comment on server
axios
return
axios
.
post
(
`
${
formAction
}
?html=true`
,
formData
)
.
post
(
`
${
formAction
}
?html=true`
,
formData
)
.
then
(
res
=>
{
.
then
(
res
=>
{
const
note
=
res
.
data
;
const
note
=
res
.
data
;
...
@@ -1928,8 +1930,6 @@ export default class Notes {
...
@@ -1928,8 +1930,6 @@ export default class Notes {
this
.
reenableTargetFormSubmitButton
(
e
);
this
.
reenableTargetFormSubmitButton
(
e
);
this
.
addNoteError
(
$form
);
this
.
addNoteError
(
$form
);
});
});
return
$closeBtn
.
text
(
$closeBtn
.
data
(
'
originalText
'
));
}
}
/**
/**
...
...
This diff is collapsed.
Click to expand it.
spec/javascripts/notes_spec.js
View file @
64572b53
This diff is collapsed.
Click to expand it.
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