add a missing semicolon so tests don't fail
This commit is contained in:
parent
e3f4df7e0a
commit
52ab5147c9
@ -201,7 +201,7 @@ define([
|
|||||||
Cryptpad.confirm("Are you really ready to add these options to your poll?", function (yes) {
|
Cryptpad.confirm("Are you really ready to add these options to your poll?", function (yes) {
|
||||||
if (!yes) { return; }
|
if (!yes) { return; }
|
||||||
var options = Wizard.computeSlots(function (a, b) {
|
var options = Wizard.computeSlots(function (a, b) {
|
||||||
return a + ' ('+ b + ')'
|
return a + ' ('+ b + ')';
|
||||||
});
|
});
|
||||||
|
|
||||||
var proxy = module.rt.proxy;
|
var proxy = module.rt.proxy;
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user