BigW Consortium Gitlab

  1. 05 Apr, 2016 1 commit
  2. 04 Apr, 2016 8 commits
  3. 31 Mar, 2016 4 commits
  4. 28 Mar, 2016 1 commit
  5. 18 Mar, 2016 1 commit
  6. 10 Mar, 2016 2 commits
  7. 04 Mar, 2016 2 commits
  8. 02 Mar, 2016 1 commit
  9. 29 Feb, 2016 1 commit
  10. 25 Jan, 2016 1 commit
  11. 21 Jan, 2016 1 commit
  12. 20 Jan, 2016 3 commits
  13. 13 Jan, 2016 2 commits
  14. 12 Jan, 2016 1 commit
  15. 08 Jan, 2016 1 commit
  16. 23 Dec, 2015 2 commits
  17. 22 Dec, 2015 1 commit
  18. 15 Dec, 2015 1 commit
  19. 02 Dec, 2015 1 commit
  20. 18 Nov, 2015 1 commit
  21. 17 Nov, 2015 2 commits
  22. 16 Nov, 2015 1 commit
  23. 12 Nov, 2015 1 commit
    • Avoid render edit_form in each notes. · 19740871
      Jason Lee authored
      Use RJS to render edit note feature.
      
      Before:
      
      ```
      Rendered projects/notes/_note.html.haml (27.9ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.7ms)
      Rendered projects/_md_preview.html.haml (3.9ms)
      Rendered projects/notes/_edit_form.html.haml (6.9ms)
      Rendered projects/notes/_note.html.haml (17.7ms)
      Rendered projects/_zen.html.haml (0.3ms)
      Rendered projects/notes/_hints.html.haml (0.6ms)
      Rendered projects/_md_preview.html.haml (3.4ms)
      Rendered projects/notes/_edit_form.html.haml (7.0ms)
      ```
      
      After:
      
      ```
      Rendered projects/notes/_note.html.haml (13.8ms)
      Rendered projects/notes/_note.html.haml (7.1ms)
      Rendered projects/notes/_note.html.haml (9.5ms)
      Rendered projects/notes/_note.html.haml (8.5ms)
      ```
      
      This change reduce at least 6ms * N ('N' - number of notes).