From fc2f923de1aeae987cfc9214f6cb73c28569f01c Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Tue, 17 May 2011 23:21:22 -0400 Subject: [PATCH] Missing semi-colon --- web/js/010-libphotofloat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {