From 37ac91dc1e9285ce332f801fb32439b08a9c486d Mon Sep 17 00:00:00 2001 From: JC Brand Date: Sat, 19 Jul 2014 12:31:02 +0200 Subject: [PATCH] Bugfix. Two undefined vars (now an issue because of strict mode) --- converse.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/converse.js b/converse.js index 7d65488bb..b890f84fd 100644 --- a/converse.js +++ b/converse.js @@ -2024,7 +2024,7 @@ $fields = $stanza.find('field'), title = $stanza.find('title').text(), instructions = $stanza.find('instructions').text(), - i, j, options=[]; + i, j, options=[], $field, $options; var input_types = { 'text-private': 'password', 'text-single': 'textline',