Sha256: 40ce9025ae8fab55a3445571fd5127aee0c458b1a65ae25c4a3376b0107492d4
Contents?: true
Size: 826 Bytes
Versions: 17
Compression:
Stored size: 826 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2009 Sprout Systems, Inc. and contributors. // Portions ©2008-2009 Apple Inc. All rights reserved. // License: Licened under MIT license (see license.js) // ========================================================================== /** @class SC.CSSStyle A css style object represents a css style that is part of a single css rule in a single css style sheet. @extends SC.Object */ SC.CSSStyle = SC.Object.extend( /** @scope SC.CSSStyle.prototype */ { /** @property {String} a css string representing the style property */ style: '', /** @property {SC.CSSRule} the rule this style is part of */ rule: null });
Version data entries
17 entries across 17 versions & 2 rubygems