Sha256: 8b36a508b42acf20b2292111483c02d0d32ac69d7c095d611552f63444a5bd50
Contents?: true
Size: 818 Bytes
Versions: 30
Compression:
Stored size: 818 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 */ { /** @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
30 entries across 30 versions & 1 rubygems