From 52ab5147c99d8dde15d0cee17ba6b7d756b201a2 Mon Sep 17 00:00:00 2001 From: ansuz Date: Tue, 19 Jul 2016 16:23:39 +0200 Subject: [PATCH] add a missing semicolon so tests don't fail --- www/poll/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/poll/main.js b/www/poll/main.js index 15da3ad31..105f93420 100644 --- a/www/poll/main.js +++ b/www/poll/main.js @@ -201,7 +201,7 @@ define([ Cryptpad.confirm("Are you really ready to add these options to your poll?", function (yes) { if (!yes) { return; } var options = Wizard.computeSlots(function (a, b) { - return a + ' ('+ b + ')' + return a + ' ('+ b + ')'; }); var proxy = module.rt.proxy;