From 9c75fcbef16e68dd3898545fc5d11b1261de1a26 Mon Sep 17 00:00:00 2001
From: Nihad Abbasov <narkoz.2008@gmail.com>
Date: Sun, 23 Sep 2012 09:52:01 -0700
Subject: [PATCH] auto complete team member mentions

---
 app/views/notes/_common_form.html.haml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/app/views/notes/_common_form.html.haml b/app/views/notes/_common_form.html.haml
index fc6e3c7ee..f91e921bb 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 });
+  });
-- 
2.30.9