Sha256: 3907c85bc6cdf88bc22a8f978be19d2bd7a497aae5fc3b79858ade23d9cefeab
Contents?: true
Size: 818 Bytes
Versions: 7
Compression:
Stored size: 818 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2011 Strobe Inc. and contributors. // Portions ©2008-2010 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 */ { /** @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
7 entries across 7 versions & 2 rubygems