]> git.scottworley.com Git - picsort/blob - picsorter.js
Use the ready shorthand
[picsort] / picsorter.js
1 var exposure = 20;
2
3 function setpic(pic) {
4 $("#pic")[0].src = exposure + "/" + pic;
5 }
6
7 $(function() {
8 setpic(files[0]);
9 });