1 // ========================================================================== 2 // Project: SproutCore - JavaScript Application Framework 3 // Copyright: ©2006-2011 Strobe Inc. and contributors. 4 // Portions ©2008-2011 Apple Inc. All rights reserved. 5 // License: Licensed under MIT license (see license.js) 6 // ========================================================================== 7 8 /** @class 9 @extends SC.Theme 10 @since SproutCore 1.1 11 */ 12 SC.EmptyTheme = SC.BaseTheme.create({ 13 name: 'sc-empty-theme' 14 }); 15 16 SC.Theme.addTheme(SC.EmptyTheme); 17