Created
May 3, 2012 13:36
-
-
Save anonymous/2585708 to your computer and use it in GitHub Desktop.
a guest on May 3rd, 2012 - pastebin.com/ueEug9AX
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
/* Number of panels in total | |
Draw shadows for which panel (-1 for all) */ | |
function draw_shadows(num, n) { | |
if (n != -1) num = n; | |
else n++; | |
for (n = n; n <= num; n++) { | |
alert(n); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment