gitlab-org--gitlab-foss/app/assets/javascripts/shortcuts_dashboard_navigat...

15 lines
614 B
CoffeeScript
Raw Normal View History

2014-08-21 08:14:31 +00:00
#= require shortcuts
class @ShortcutsDashboardNavigation extends Shortcuts
constructor: ->
super()
Mousetrap.bind('g a', -> ShortcutsDashboardNavigation.findAndFollowLink('.shortcuts-activity'))
Mousetrap.bind('g i', -> ShortcutsDashboardNavigation.findAndFollowLink('.shortcuts-issues'))
Mousetrap.bind('g m', -> ShortcutsDashboardNavigation.findAndFollowLink('.shortcuts-merge_requests'))
Mousetrap.bind('g p', -> ShortcutsDashboardNavigation.findAndFollowLink('.shortcuts-projects'))
2014-08-21 08:14:31 +00:00
@findAndFollowLink: (selector) ->
2014-08-21 08:14:31 +00:00
link = $(selector).attr('href')
if link
window.location = link