Sha256: 8677f201d1b4b6ce920b930034bd37cc13c6b8e84f7516baafeea68b6c745665
Contents?: true
Size: 931 Bytes
Versions: 24
Compression:
Stored size: 931 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 Use a normal view and mix-in SC.SplitThumb. 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
24 entries across 24 versions & 1 rubygems