BigW Consortium Gitlab

shortcuts_navigation.coffee 1.04 KB
Newer Older
1 2 3 4 5
#= require shortcuts

class @ShortcutsNavigation extends Shortcuts
  constructor: ->
    super()
6 7 8 9 10 11 12 13 14
    Mousetrap.bind('g p', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-project'))
    Mousetrap.bind('g f', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-tree'))
    Mousetrap.bind('g c', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-commits'))
    Mousetrap.bind('g n', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-network'))
    Mousetrap.bind('g g', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-graphs'))
    Mousetrap.bind('g i', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-issues'))
    Mousetrap.bind('g m', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-merge_requests'))
    Mousetrap.bind('g w', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-wiki'))
    Mousetrap.bind('g s', -> ShortcutsNavigation.findAndFollowLink('.shortcuts-snippets'))
15
    @enabledHelp.push('.hidden-shortcut.project')
16 17

  @findAndFollowLink: (selector) ->
18 19 20
   link = $(selector).attr('href')
   if link
     window.location = link