mirror of
https://github.com/atom/atom.git
synced 2026-01-24 14:28:14 -05:00
13 lines
251 B
CoffeeScript
13 lines
251 B
CoffeeScript
{$} = require './space-pen-extensions'
|
|
_ = require 'underscore-plus'
|
|
PaneAxisView = require './pane-axis-view'
|
|
|
|
module.exports =
|
|
class PaneColumnView extends PaneAxisView
|
|
|
|
@content: ->
|
|
@div class: 'pane-column'
|
|
|
|
className: ->
|
|
"PaneColumn"
|