Sha256: d64528c2e4533d3cedebbde7fd65681518acc9d0849006b533ef44e03e95f004
Contents?: true
Size: 803 Bytes
Versions: 11
Compression:
Stored size: 803 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed 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 */ { /** @type String a css string representing the style property */ style: '', /** @property {SC.CSSRule} the rule this style is part of */ rule: null });
Version data entries
11 entries across 11 versions & 1 rubygems