Sha256: 760c299d332386b9edaa2498c6137d6b270ed6bd63bf9b6f02356403e621dadd
Contents?: true
Size: 833 Bytes
Versions: 30
Compression:
Stored size: 833 Bytes
Contents
// ========================================================================== // Project: TestRunner.OffsetCheckboxView // Copyright: ©2011 Apple Inc. // ========================================================================== /*globals TestRunner */ /** @class This special view class will automatically adjusts its left offset based on an "offset" value, which is will be bound to the width of the split view. This way when you resize the split view, the checkbox view will move also. @extends SC.CheckboxView */ TestRunner.OffsetCheckboxView = SC.CheckboxView.extend( /** @scope TestRunner.OffsetCheckboxView.prototype */ { /** bind to thickness of splitview (though a controller) */ offset: 0, offsetDidChange: function() { this.adjust('left', this.get('offset')+6); }.observes('offset') });
Version data entries
30 entries across 30 versions & 1 rubygems