Sha256: 74d51419269b91a2552904432bf37374a18358906386eda869615cb3fcd2a188
Contents?: true
Size: 944 Bytes
Versions: 9
Compression:
Stored size: 944 Bytes
Contents
// ========================================================================== // Project: TestRunner.sourceController // Copyright: ©2009 My Company, 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
9 entries across 9 versions & 1 rubygems