Skip to content

Instantly share code, notes, and snippets.

Created May 3, 2012 13:36
Show Gist options
  • Save anonymous/2585708 to your computer and use it in GitHub Desktop.
Save anonymous/2585708 to your computer and use it in GitHub Desktop.
a guest on May 3rd, 2012 - pastebin.com/ueEug9AX
/* 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