From eed687a2e2f2ce320feaee24716f9d2d336a3860 Mon Sep 17 00:00:00 2001 From: jagtalon Date: Fri, 27 Jun 2014 14:24:21 +0000 Subject: [PATCH] in_theaters.js: Remove the space between comment and function. --- share/spice/in_theaters/in_theaters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/spice/in_theaters/in_theaters.js b/share/spice/in_theaters/in_theaters.js index 055023ab58..72d6e586e5 100644 --- a/share/spice/in_theaters/in_theaters.js +++ b/share/spice/in_theaters/in_theaters.js @@ -1,8 +1,8 @@ (function(env) { "use strict"; + // A change in the Rotten Tomatoes API returns images that end in _tmb. // This changes this to _det. - function toDetail(img) { return img.replace(/tmb\.jpg$/, "det.jpg"); }