Make focusing other pane views from workspaceView private

This commit is contained in:
Ben Ogle
2014-09-18 16:44:26 -07:00
parent 69f54b90dc
commit e2d9e5bd74

View File

@@ -303,16 +303,16 @@ class WorkspaceView extends View
# Focus the next pane by id.
focusNextPaneView: -> @model.activateNextPane()
# Essential: Focus the pane directly above the active pane.
# Focus the pane directly above the active pane.
focusPaneViewAbove: -> @panes.focusPaneViewAbove()
# Essential: Focus the pane directly below the active pane.
# Focus the pane directly below the active pane.
focusPaneViewBelow: -> @panes.focusPaneViewBelow()
# Essential: Focus the pane directly to the left of the active pane.
# Focus the pane directly to the left of the active pane.
focusPaneViewOnLeft: -> @panes.focusPaneViewOnLeft()
# Essential: Focus the pane directly to the right of the active pane.
# Focus the pane directly to the right of the active pane.
focusPaneViewOnRight: -> @panes.focusPaneViewOnRight()
###