1 // ==========================================================================
  2 // Project:   SproutCore - JavaScript Application Framework
  3 // Copyright: ©2006-2010 Sprout Systems, Inc. and contributors.
  4 //            Portions ©2008-2011 Apple Inc. All rights reserved.
  5 // License:   Licensed under MIT license (see license.js)
  6 // ==========================================================================
  7 
  8 /**
  9   @class
 10   @deprecated Use a normal view and mix-in SC.SplitThumb.
 11 
 12   Kept to allow a modicum of backwards-compatibility. Please use
 13   a normal view and mix in SC.SplitThumb instead.
 14 
 15   @extends SC.View
 16   @author Alex Iskander
 17   @test in split
 18 */
 19 SC.ThumbView = SC.View.extend(SC.SplitThumb,
 20 /** @scope SC.ThumbView.prototype */ {
 21   classNames: ['sc-thumb-view'],
 22   
 23   init: function() {
 24     sc_super();
 25     console.warn("SC.ThumbView is deprecated. Please use a normal view and mix in SC.SplitThumb instead.");
 26   }
 27 });
 28