Sha256: 86f4838910befa6c84d945f284b3f9c61c8ceb37b64f6eb38709e0c758333991
Contents?: true
Size: 899 Bytes
Versions: 17
Compression:
Stored size: 899 Bytes
Contents
// ========================================================================== // Project: SproutCore - JavaScript Application Framework // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors. // Portions ©2008-2011 Apple Inc. All rights reserved. // License: Licensed under MIT license (see license.js) // ========================================================================== /** @class @deprecated DEPRECATED. Kept to allow a modicum of backwards-compatibility. Please use a normal view and mix in SC.SplitThumb instead. @extends SC.View @author Alex Iskander @test in split */ SC.ThumbView = SC.View.extend(SC.SplitThumb, /** @scope SC.ThumbView.prototype */ { classNames: ['sc-thumb-view'], init: function() { sc_super(); console.warn("SC.ThumbView is deprecated. Please use a normal view and mix in SC.SplitThumb instead."); } });
Version data entries
17 entries across 17 versions & 1 rubygems