34 lines
881 B
CoffeeScript
34 lines
881 B
CoffeeScript
class @Shortcuts
|
|
constructor: ->
|
|
@enabledHelp = []
|
|
Mousetrap.reset()
|
|
Mousetrap.bind('?', @selectiveHelp)
|
|
Mousetrap.bind('s', Shortcuts.focusSearch)
|
|
|
|
selectiveHelp: (e) =>
|
|
Shortcuts.showHelp(e, @enabledHelp)
|
|
|
|
@showHelp: (e, location) ->
|
|
if $('#modal-shortcuts').length > 0
|
|
$('#modal-shortcuts').modal('show')
|
|
else
|
|
$.ajax(
|
|
url: '/help/shortcuts',
|
|
dataType: 'script',
|
|
success: (e) ->
|
|
if location and location.length > 0
|
|
$(l).show() for l in location
|
|
else
|
|
$('.hidden-shortcut').show()
|
|
$('.js-more-help-button').remove()
|
|
)
|
|
e.preventDefault()
|
|
|
|
@focusSearch: (e) ->
|
|
$('#search').focus()
|
|
e.preventDefault()
|
|
|
|
$(document).on 'click.more_help', '.js-more-help-button', (e) ->
|
|
$(@).remove()
|
|
$('.hidden-shortcut').show()
|
|
e.preventDefault()
|