Skip to content
Snippets Groups Projects
Commit cbcc5f85 authored by Douwe Maan's avatar Douwe Maan
Browse files

Workaround that doesn't add unwanted newline.

parent 8e40d594
No related branches found
No related tags found
No related merge requests found
Loading
@@ -4,6 +4,7 @@ v 7.12.0 (unreleased)
Loading
@@ -4,6 +4,7 @@ v 7.12.0 (unreleased)
- Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka) - Allow to configure location of the `.gitlab_shell_secret` file. (Jakub Jirutka)
   
v 7.11.0 (unreleased) v 7.11.0 (unreleased)
- Get editing comments to work in Chrome 43 again.
- Fix broken view when viewing history of a file that includes a path that used to be another file (Stan Hu) - Fix broken view when viewing history of a file that includes a path that used to be another file (Stan Hu)
- Don't show duplicate deploy keys - Don't show duplicate deploy keys
- Fix commit time being displayed in the wrong timezone in some cases (Hannes Rosenögger) - Fix commit time being displayed in the wrong timezone in some cases (Hannes Rosenögger)
Loading
Loading
Loading
@@ -313,11 +313,12 @@ class @Notes
Loading
@@ -313,11 +313,12 @@ class @Notes
textarea = form.find("textarea") textarea = form.find("textarea")
textarea.focus() textarea.focus()
   
# HACK (rspeicher): Work around a Chrome 43 bug(?). # HACK (rspeicher/DouweM): Work around a Chrome 43 bug(?).
# The textarea has the correct value, Chrome just won't show it unless we # The textarea has the correct value, Chrome just won't show it unless we
# modify it, so let's add a newline! # modify it, so let's clear it and re-set it!
textarea.val (_, value) -> value = textarea.val()
"#{value}\n" textarea.val ""
textarea.val value
   
disableButtonIfEmptyField textarea, form.find(".js-comment-button") disableButtonIfEmptyField textarea, form.find(".js-comment-button")
   
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment