Typo: Issueable -> Issuable
This commit is contained in:
parent
8e6fa2555e
commit
4d1878253e
4 changed files with 7 additions and 7 deletions
|
@ -38,7 +38,7 @@
|
|||
#= require shortcuts
|
||||
#= require shortcuts_navigation
|
||||
#= require shortcuts_dashboard_navigation
|
||||
#= require shortcuts_issueable
|
||||
#= require shortcuts_issuable
|
||||
#= require shortcuts_network
|
||||
#= require cal-heatmap
|
||||
#= require_tree .
|
||||
|
|
|
@ -22,7 +22,7 @@ class Dispatcher
|
|||
shortcut_handler = new ShortcutsNavigation()
|
||||
when 'projects:issues:show'
|
||||
new Issue()
|
||||
shortcut_handler = new ShortcutsIssueable()
|
||||
shortcut_handler = new ShortcutsIssuable()
|
||||
new ZenMode()
|
||||
when 'projects:milestones:show'
|
||||
new Milestone()
|
||||
|
@ -47,7 +47,7 @@ class Dispatcher
|
|||
new IssuableForm($('.merge-request-form'))
|
||||
when 'projects:merge_requests:show'
|
||||
new Diff()
|
||||
shortcut_handler = new ShortcutsIssueable()
|
||||
shortcut_handler = new ShortcutsIssuable()
|
||||
new ZenMode()
|
||||
when "projects:merge_requests:diffs"
|
||||
new Diff()
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
|
||||
#= require shortcuts_navigation
|
||||
|
||||
class @ShortcutsIssueable extends ShortcutsNavigation
|
||||
class @ShortcutsIssuable extends ShortcutsNavigation
|
||||
constructor: (isMergeRequest) ->
|
||||
super()
|
||||
Mousetrap.bind('a', ->
|
|
@ -1,11 +1,11 @@
|
|||
#= require jquery
|
||||
#= require jasmine-fixture
|
||||
|
||||
#= require shortcuts_issueable
|
||||
#= require shortcuts_issuable
|
||||
|
||||
describe 'ShortcutsIssueable', ->
|
||||
describe 'ShortcutsIssuable', ->
|
||||
beforeEach ->
|
||||
@shortcut = new ShortcutsIssueable()
|
||||
@shortcut = new ShortcutsIssuable()
|
||||
|
||||
describe '#replyWithSelectedText', ->
|
||||
# Stub window.getSelection to return the provided String.
|
Loading…
Reference in a new issue