// ======================================================================== // SproutCore // copyright 2006-2008 Sprout Systems, Inc. // ======================================================================== require('panes/overlay') ; // A panel should be used for long-term modal interfaces. For example, you // might use a panel for preferences or configuration settings. These are // mini-parts of the application. SC.PANEL_PANE = 'panel'; SC.PanelPaneView = SC.OverlayPaneView.extend({ emptyElement: '
', layer: 100 }) ;