Created
November 22, 2012 16:20
-
-
Save mattapperson/4131939 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var win = new Window({ | |
backgroundColor: '#fff' | |
}); | |
var box = new View({ | |
width:40, | |
height:40, | |
backgroundColor: '#000' | |
}); | |
var box2 = new View({ | |
width:60, | |
height:60, | |
backgroundColor: '#999' | |
}); | |
win.add(box2); | |
win.add(box); | |
win.open(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment