Sha256: 42abc5c1e63af237b357c82ace447bb14fdeb06475727d0ca7c68739eed518ed
Contents?: true
Size: 938 Bytes
Versions: 30
Compression:
Stored size: 938 Bytes
Contents
// ========================================================================== // Project: TestRunner.sourceController // Copyright: ©2011 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
30 entries across 30 versions & 1 rubygems