123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <%
- # Copyright (C) 2015 - present Instructure, Inc.
- #
- # This file is part of Canvas.
- #
- # Canvas is free software: you can redistribute it and/or modify it under
- # the terms of the GNU Affero General Public License as published by the Free
- # Software Foundation, version 3 of the License.
- #
- # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
- # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
- # details.
- #
- # You should have received a copy of the GNU Affero General Public License along
- # with this program. If not, see <http://www.gnu.org/licenses/>.
- %>
- <% content_for :keyboard_navigation do %>
- <ul class="navigation_list" tabindex="-1">
- <li>
- <span class="keycode">{{#t}}Up{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Previous Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}Down{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Next Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}Space{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Move Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}j{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Previous Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}k{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Next Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}e{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Edit Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}d{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Delete Current Module/Item{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}i{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Increase Indent{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}o{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}Decrease Indent{{/t}}</span>
- </li>
- <li>
- <span class="keycode">{{#t}}n{{/t}}</span>
- <span class="colon">:</span>
- <span class="description">{{#t}}New Module{{/t}}</span>
- </li>
- </ul>
- <% end %>
|