mirror of
https://github.com/freeCodeCamp/devdocs
synced 2024-11-16 19:48:10 +01:00
Add keyboard shortcut to open preferences
This commit is contained in:
parent
4984f0064f
commit
031b62485f
3 changed files with 35 additions and 17 deletions
|
@ -104,6 +104,9 @@ class app.Shortcuts
|
|||
when 40
|
||||
@trigger 'pageBottom'
|
||||
false
|
||||
when 188
|
||||
@trigger 'preferences'
|
||||
false
|
||||
|
||||
handleKeydownShiftEvent: (event, _force) ->
|
||||
return @handleKeydownEvent(event, true) if not _force and event.which in [37, 38, 39, 40] and @swapArrowKeysBehavior()
|
||||
|
|
|
@ -45,7 +45,7 @@ app.templates.helpPage = """
|
|||
</dl>
|
||||
|
||||
<h2 class="_block-heading" id="shortcuts">Keyboard Shortcuts</h2>
|
||||
<h3 class="_shortcuts-title">Selection</h3>
|
||||
<h3 class="_shortcuts-title">Sidebar</h3>
|
||||
<dl class="_shortcuts-dl">
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">↓</code>
|
||||
|
@ -61,8 +61,11 @@ app.templates.helpPage = """
|
|||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">#{ctrlKey} + enter</code>
|
||||
<dd class="_shortcuts-dd">Open selection in a new tab
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">alt + r</code>
|
||||
<dd class="_shortcuts-dd">Reveal current page in sidebar
|
||||
</dl>
|
||||
<h3 class="_shortcuts-title">Navigation</h3>
|
||||
<h3 class="_shortcuts-title">Browsing</h3>
|
||||
<dl class="_shortcuts-dl">
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">#{navKey} + ←</code>
|
||||
|
@ -83,15 +86,24 @@ app.templates.helpPage = """
|
|||
<code class="_shortcut-code">#{ctrlKey} + ↑</code>
|
||||
<code class="_shortcut-code">#{ctrlKey} + ↓</code>
|
||||
<dd class="_shortcuts-dd">Scroll to the top/bottom
|
||||
</dl>
|
||||
<h3 class="_shortcuts-title">Misc</h3>
|
||||
<dl class="_shortcuts-dl">
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">alt + f</code>
|
||||
<dd class="_shortcuts-dd">Focus first link in the content area<br>(press tab to focus the other links)
|
||||
</dl>
|
||||
<h3 class="_shortcuts-title">App</h3>
|
||||
<dl class="_shortcuts-dl">
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">alt + r</code>
|
||||
<dd class="_shortcuts-dd">Reveal current page in sidebar
|
||||
<code class="_shortcut-code">ctrl + ,</code>
|
||||
<dd class="_shortcuts-dd">Open preferences
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">escape</code>
|
||||
<dd class="_shortcuts-dd">Reset UI
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">?</code>
|
||||
<dd class="_shortcuts-dd">Show this page
|
||||
</dl>
|
||||
<h3 class="_shortcuts-title">Miscellaneous</h3>
|
||||
<dl class="_shortcuts-dl">
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">alt + o</code>
|
||||
<dd class="_shortcuts-dd">Open original page
|
||||
|
@ -101,12 +113,6 @@ app.templates.helpPage = """
|
|||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">alt + s</code>
|
||||
<dd class="_shortcuts-dd">Search on Stack Overflow
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">escape</code>
|
||||
<dd class="_shortcuts-dd">Reset<br>(press twice in single doc mode)
|
||||
<dt class="_shortcuts-dt">
|
||||
<code class="_shortcut-code">?</code>
|
||||
<dd class="_shortcuts-dd">Show this page
|
||||
</dl>
|
||||
<p class="_note">
|
||||
<strong>Tip:</strong> If the cursor is no longer in the search field, press <code class="_label">/</code> or
|
||||
|
|
|
@ -6,6 +6,7 @@ class app.views.Document extends app.View
|
|||
|
||||
@shortcuts:
|
||||
help: 'onHelp'
|
||||
preferences: 'onPreferences'
|
||||
escape: 'onEscape'
|
||||
superLeft: 'onBack'
|
||||
superRight: 'onForward'
|
||||
|
@ -46,6 +47,11 @@ class app.views.Document extends app.View
|
|||
|
||||
onHelp: ->
|
||||
app.router.show '/help#shortcuts'
|
||||
return
|
||||
|
||||
onPreferences: ->
|
||||
app.router.show '/settings'
|
||||
return
|
||||
|
||||
onEscape: ->
|
||||
path = if !app.isSingleDoc() or location.pathname is app.doc.fullPath()
|
||||
|
@ -54,12 +60,15 @@ class app.views.Document extends app.View
|
|||
app.doc.fullPath()
|
||||
|
||||
app.router.show(path)
|
||||
return
|
||||
|
||||
onBack: ->
|
||||
history.back()
|
||||
return
|
||||
|
||||
onForward: ->
|
||||
history.forward()
|
||||
return
|
||||
|
||||
onClick: (event) ->
|
||||
return unless event.target.hasAttribute('data-behavior')
|
||||
|
|
Loading…
Reference in a new issue