diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-09-30 08:15:09 -0700 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-09-30 08:15:09 -0700 |
commit | 5c8177ea6a445d8f63840ae62d6f1d3666f5cc2c (patch) | |
tree | 642d6ecbd645b447d21bb43274a71f58d7c83188 | |
parent | 3bcc39b4d3830916ac9af653c397557a7e100ef6 (diff) | |
parent | f5a62835bb43a3cae325337b84813225b67e7651 (diff) | |
download | gitlab-ce-5c8177ea6a445d8f63840ae62d6f1d3666f5cc2c.tar.gz |
Merge pull request #1594 from riyad/fix-completion-for-per-line-forms
Fix completion for per line forms
-rw-r--r-- | app/views/notes/_common_form.html.haml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/notes/_common_form.html.haml b/app/views/notes/_common_form.html.haml index 626a448c229..adaad9ecec7 100644 --- a/app/views/notes/_common_form.html.haml +++ b/app/views/notes/_common_form.html.haml @@ -41,7 +41,7 @@ $(function(){ var names = #{@project.users.pluck(:name)}, emoji = ['+1', '-1']; var emoji = $.map(emoji, function(value, i) {return {key:value + ':', name:value}}); - $('#note_note'). + $('#note_note, .per_line_form .line-note-text'). atWho('@', { data: names }). atWho(':', { data: emoji, |