mirror of
https://github.com/atom/atom.git
synced 2026-04-28 03:01:47 -04:00
Rename PaneContainer to PaneContainerView
This commit is contained in:
@@ -5,7 +5,7 @@ PaneContainerModel = require './pane-container-model'
|
||||
|
||||
# Private: Manages the list of panes within a {WorkspaceView}
|
||||
module.exports =
|
||||
class PaneContainer extends View
|
||||
class PaneContainerView extends View
|
||||
atom.deserializers.add(this)
|
||||
Serializable.includeInto(this)
|
||||
|
||||
@@ -9,7 +9,7 @@ EditorView = require './editor-view'
|
||||
PaneView = require './pane-view'
|
||||
PaneColumnView = require './pane-column-view'
|
||||
PaneRowView = require './pane-row-view'
|
||||
PaneContainer = require './pane-container'
|
||||
PaneContainerView = require './pane-container-view'
|
||||
Editor = require './editor'
|
||||
|
||||
# Public: The container for the entire Atom application.
|
||||
@@ -60,7 +60,7 @@ class WorkspaceView extends View
|
||||
|
||||
# Private:
|
||||
initialize: ({panes, @fullScreen}={}) ->
|
||||
panes ?= new PaneContainer
|
||||
panes ?= new PaneContainerView
|
||||
@panes.replaceWith(panes)
|
||||
@panes = panes
|
||||
|
||||
|
||||
Reference in New Issue
Block a user