An error occurred fetching the project authors.
  1. 18 Aug, 2021 1 commit
  2. 16 Aug, 2021 1 commit
  3. 21 Jul, 2021 1 commit
  4. 18 Jun, 2021 1 commit
  5. 08 Jun, 2021 1 commit
  6. 17 Mar, 2021 1 commit
  7. 18 Feb, 2021 1 commit
  8. 11 Feb, 2021 1 commit
  9. 05 Feb, 2021 1 commit
  10. 03 Feb, 2021 1 commit
  11. 25 Jan, 2021 1 commit
  12. 16 Dec, 2020 1 commit
  13. 23 Nov, 2020 1 commit
    • Achilleas Pipinellis's avatar
      Update handbook URL for Technical Writers assignments · 2dc1b3be
      Achilleas Pipinellis authored
      The previous URL had two drawbacks:
      
      1. It didn't match what the title was about (`Assignments to DevOps
         Stages and Groups`, and the anchor was `#designated-technical-writers`).
      2. It didn't account for the other sections, like development and API
         guidelines.
      2dc1b3be
  14. 30 Oct, 2020 1 commit
  15. 12 Oct, 2020 1 commit
    • Nathan Friend's avatar
      Abstract keyboard shortcut bindings · 191f857b
      Nathan Friend authored
      This commit updates the way in which we bind key sequences to functions
      when implementing keyboard shortcuts.
      
      Before this commit, developers would directly bind a key sequence to a
      handler:
      
      ```js
      Mousetrap.bind('p b', handler);
      ```
      
      After this commit, developers will instead define a new "command" in
      `~/behaviors/shortcuts/keybindings.js` and bind to the result of
      `keysFor(command)`:
      
      ```js
      import { keysFor, TOGGLE_PERFORMANCE_BAR }
      from '~/behaviors/shortcuts/keybindings.js';
      
      Mousetrap.bind(keysFor(TOGGLE_PERFORMANCE_BAR), handler);
      ```
      
      `keybindings.js` handles returning the appropriate key sequence for
      the command (or it returns `[]` if the command is disabled).
      191f857b
  16. 06 Aug, 2020 1 commit
  17. 01 Jul, 2020 1 commit
  18. 20 Apr, 2020 1 commit
  19. 04 Apr, 2020 1 commit
  20. 09 Mar, 2020 1 commit
  21. 28 Feb, 2020 1 commit
  22. 13 Feb, 2020 1 commit
  23. 29 Nov, 2019 1 commit
  24. 27 Sep, 2019 1 commit
  25. 19 Sep, 2019 2 commits
  26. 18 Sep, 2019 1 commit
  27. 12 Aug, 2019 1 commit
  28. 15 Jul, 2019 1 commit
  29. 16 Apr, 2019 1 commit
  30. 21 Mar, 2019 1 commit
    • Simon Knox's avatar
      Cleanup of fe_docs · d7c92faa
      Simon Knox authored
      Start moving back to regular fe_docs
      Remove Initiatives, add section to index in fe_guide
      Delete some no-longer-relevant parts from principles
      Update title - Progressive Enchancement is a browser-support term
      and could be confused
      "When to use" parts are discussed elswhere
      Vue & jQuery issue is no longer relevant
      Delete duplicate Security docs
      Remove empty files, move event_tracking
      Shuffle index sections around
      Remove sections on Vue & Webpack (we say same thing in prev paragraph)
      Remove link to Droplab docs
      d7c92faa
  31. 13 Feb, 2019 1 commit
  32. 14 Jan, 2019 2 commits
  33. 08 Jan, 2019 2 commits
  34. 28 Nov, 2018 1 commit
  35. 27 May, 2018 1 commit
  36. 07 May, 2018 1 commit
  37. 19 Apr, 2018 1 commit