summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app/views/notes/_common_form.html.haml5
1 files changed, 5 insertions, 0 deletions
diff --git a/app/views/notes/_common_form.html.haml b/app/views/notes/_common_form.html.haml
index fc6e3c7ee6e..f91e921bbc7 100644
--- a/app/views/notes/_common_form.html.haml
+++ b/app/views/notes/_common_form.html.haml
@@ -37,3 +37,8 @@
= f.file_field :attachment, class: "input-file"
%span.hint Any file less than 10 MB
+:javascript
+ $(function(){
+ var names = #{@project.users.pluck(:name)};
+ $('.note-text').atWho('@', { data: names });
+ });