aboutsummaryrefslogtreecommitdiffstats
path: root/web/js/010-libphotofloat.js
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2011-05-17 23:21:22 -0400
committerJason A. Donenfeld <Jason@zx2c4.com>2011-05-17 23:21:22 -0400
commitfc2f923de1aeae987cfc9214f6cb73c28569f01c (patch)
treeef1577666a9c63aa9990c20e59c339a63a1b7c89 /web/js/010-libphotofloat.js
parentDon't recurse up prototype. (diff)
downloadPhotoFloat-fc2f923de1aeae987cfc9214f6cb73c28569f01c.tar.xz
PhotoFloat-fc2f923de1aeae987cfc9214f6cb73c28569f01c.zip
Missing semi-colon
Diffstat (limited to '')
-rw-r--r--web/js/010-libphotofloat.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/js/010-libphotofloat.js b/web/js/010-libphotofloat.js
index 2a54813..a700705 100644
--- a/web/js/010-libphotofloat.js
+++ b/web/js/010-libphotofloat.js
@@ -47,7 +47,7 @@
PhotoFloat.trimExtension = function(name) {
var index = name.lastIndexOf(".");
if (index !== -1)
- return name.substring(0, index)
+ return name.substring(0, index);
return name;
};
PhotoFloat.cleanHash = function(hash) {