Sha256: 8cf964bd68d71a338f507a6c17a0e29ce4d9f4e4843b47ccd729de3fcfbb4981
Contents?: true
Size: 938 Bytes
Versions: 24
Compression:
Stored size: 938 Bytes
Contents
// ========================================================================== // Project: TestRunner.sourceController // Copyright: ©2009 Apple Inc. // ========================================================================== /*globals TestRunner */ /** @class 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: 'TestRunner.targetsController.sourceRoot', treeItemChildrenKey: "children", treeItemIsExpandedKey: "isExpanded", treeItemIsGrouped: YES, allowsMultipleSelection: NO, allowsEmptySelection: NO, // used to set the thickness of the sidebar. bound here. sidebarThickness: 200 // set default thickness in pixels }) ;
Version data entries
24 entries across 24 versions & 2 rubygems