Created
April 18, 2011 16:23
-
-
Save allometry/925649 to your computer and use it in GitHub Desktop.
SplitChild Mixin Exception
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ========================================================================== | |
// Project: Resumes - mainPage | |
// Copyright: ©2011 My Company, Inc. | |
// ========================================================================== | |
/*globals Resumes */ | |
// This page describes the main user interface for your application. | |
Resumes.mainPage = SC.Page.design({ | |
mainPane: SC.MainPane.design({ | |
childViews: 'splitView'.w(), | |
splitView: SC.SplitView.design({ | |
childViews: 'leftPanel rightPanel'.w(), | |
leftPanel: SC.View.design(SC.SplitChild, { | |
minimumSize: 200 | |
}), | |
rightPanel: SC.View.design(SC.SplitChild, { | |
autoResizeStyle: SC.RESIZE_AUTOMATIC | |
}) | |
}) | |
}) | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Exception is being thrown with the SC.SplitChild mixin. This is straight from the edge docs. No further information is given on how to resolve...