Sha256: 04046c9f5d18c407f3c0b5892f8c38f9c029c2f79ef0df4b4eb9ff4f4d7ad037
Contents?: true
Size: 1.61 KB
Versions: 3
Compression:
Stored size: 1.61 KB
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== sc_require('views/split'); /** @class A SplitDividerView displays a divider between two views within a SplitView. Clicking and dragging the divider will change the thickness of each view either to the top/left or bottom/right of the divider. Double-clicking on the SplitDividerView will try to collapse the first view within the SplitView that has property canCollapse set to true, so it is not visible, unless you have canCollapse disabled on the SplitView. This view must be a direct child of the split view it works with. It must be surrounded by two other views. @extends SC.View @author Charles Jolley @author Lawrence Pit @author Erich Ocean @test in split */ SC.SplitDividerView = SC.View.extend( /** @scope SC.SplitDividerView.prototype */ { classNames: ['sc-split-divider-view'], /** @private */ mouseDown: function(evt) { var splitView = this.get('splitView'); return (splitView) ? splitView.mouseDownInThumbView(evt, this) : sc_super(); }, doubleClick: function(evt) { var splitView = this.get('splitView'); return (splitView) ? splitView.doubleClickInThumbView(evt, this) : sc_super(); }, touchStart: function(evt){ return this.mouseDown(evt); } });
Version data entries
3 entries across 3 versions & 2 rubygems