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 9 /** Default namespace for designer-specific classes */ 10 SC.Designer = SC.Object.extend({ 11 12 }); 13 14 // Don't want to register these for now... 15 // SC.mixin(SC.Designer,{ 16 // pages: [], 17 // 18 // controllers: [], 19 // 20 // registerPage: function(page){ 21 // SC.Designer.pages.pushObject(page); 22 // }, 23 // 24 // registerController: function(controller){ 25 // SC.Designer.controllers.pushObject(controller); 26 // } 27 // 28 // }); 29