keyboard_navigation.mustache 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. <%
  2. # Copyright (C) 2015 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <% content_for :keyboard_navigation do %>
  19. <ul class="navigation_list" tabindex="-1">
  20. <li>
  21. <span class="keycode">{{#t}}Up{{/t}}</span>
  22. <span class="colon">:</span>
  23. <span class="description">{{#t}}Previous Module/Item{{/t}}</span>
  24. </li>
  25. <li>
  26. <span class="keycode">{{#t}}Down{{/t}}</span>
  27. <span class="colon">:</span>
  28. <span class="description">{{#t}}Next Module/Item{{/t}}</span>
  29. </li>
  30. <li>
  31. <span class="keycode">{{#t}}Space{{/t}}</span>
  32. <span class="colon">:</span>
  33. <span class="description">{{#t}}Move Module/Item{{/t}}</span>
  34. </li>
  35. <li>
  36. <span class="keycode">{{#t}}j{{/t}}</span>
  37. <span class="colon">:</span>
  38. <span class="description">{{#t}}Previous Module/Item{{/t}}</span>
  39. </li>
  40. <li>
  41. <span class="keycode">{{#t}}k{{/t}}</span>
  42. <span class="colon">:</span>
  43. <span class="description">{{#t}}Next Module/Item{{/t}}</span>
  44. </li>
  45. <li>
  46. <span class="keycode">{{#t}}e{{/t}}</span>
  47. <span class="colon">:</span>
  48. <span class="description">{{#t}}Edit Module/Item{{/t}}</span>
  49. </li>
  50. <li>
  51. <span class="keycode">{{#t}}d{{/t}}</span>
  52. <span class="colon">:</span>
  53. <span class="description">{{#t}}Delete Current Module/Item{{/t}}</span>
  54. </li>
  55. <li>
  56. <span class="keycode">{{#t}}i{{/t}}</span>
  57. <span class="colon">:</span>
  58. <span class="description">{{#t}}Increase Indent{{/t}}</span>
  59. </li>
  60. <li>
  61. <span class="keycode">{{#t}}o{{/t}}</span>
  62. <span class="colon">:</span>
  63. <span class="description">{{#t}}Decrease Indent{{/t}}</span>
  64. </li>
  65. <li>
  66. <span class="keycode">{{#t}}n{{/t}}</span>
  67. <span class="colon">:</span>
  68. <span class="description">{{#t}}New Module{{/t}}</span>
  69. </li>
  70. </ul>
  71. <% end %>