Skip to content

Instantly share code, notes, and snippets.

@mattapperson
Created November 22, 2012 16:20
Show Gist options
  • Save mattapperson/4131939 to your computer and use it in GitHub Desktop.
Save mattapperson/4131939 to your computer and use it in GitHub Desktop.
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