Sha256: e6dc3252ffe8b4d3dddb046fd7a672cd0aef9b80a2ed8deea08e58aecabad899
Contents?: true
Size: 948 Bytes
Versions: 11
Compression:
Stored size: 948 Bytes
Contents
// ========================================================================== // Project: TestRunner.sourceController // Copyright: ©2011 Apple Inc. // ========================================================================== /*global TestRunner */ /** Exposed the flattened list of targets for the source list. Computed from the root node generated on the targetsController. Configure for display of the source list. @extends SC.TreeController */ TestRunner.sourceController = SC.TreeController.create( /** @scope TestRunner.sourceController.prototype */ { contentBinding: SC.Binding.oneWay('TestRunner.targetsController.sourceRoot'), treeItemChildrenKey: "children", treeItemIsExpandedKey: "isExpanded", treeItemIsGrouped: true, allowsMultipleSelection: false, allowsEmptySelection: true, // used to set the thickness of the sidebar. bound here. sidebarThickness: 200 // set default thickness in pixels });
Version data entries
11 entries across 11 versions & 1 rubygems