Created
March 10, 2010 19:10
-
-
Save Maciek416/328226 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
| 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