]> git.scottworley.com Git - picsort/commitdiff
Move exposure to a variable
authorScott Worley <scottworley@scottworley.com>
Thu, 27 Feb 2014 01:52:43 +0000 (17:52 -0800)
committerScott Worley <scottworley@scottworley.com>
Thu, 27 Feb 2014 01:52:43 +0000 (17:52 -0800)
picsorter.js

index ff1db27d40ccb3648893a211059e98c8c98d030c..9923d38b413f823158c058ec29b7adb5c2c281e6 100644 (file)
@@ -1,3 +1,5 @@
+var exposure = 20;
+
 $( document ).ready(function() {
-  $("#pic")[0].src = "20/" + files[0];
+  $("#pic")[0].src = exposure + "/" + files[0];
 });