Skip to content

Instantly share code, notes, and snippets.

@Maciek416
Created March 10, 2010 19:10
Show Gist options
  • Select an option

  • Save Maciek416/328226 to your computer and use it in GitHub Desktop.

Select an option

Save Maciek416/328226 to your computer and use it in GitHub Desktop.
function draw(){
a();
new Image..
b();
c();
new Image..
d();
}
-- transform to -->
function draw(){
a();
imageProxy(function(){
b();
c();
imageProxy(function(){
d();
})
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment