From d1dd497457bd30c4b06f29aaaec60b1c48612df9 Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 12 Feb 2016 11:17:10 +0100 Subject: [PATCH] html-patcher.js : add missing semicolon --- www/code/html-patcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/code/html-patcher.js b/www/code/html-patcher.js index 8859c668e..5ed6617a0 100644 --- a/www/code/html-patcher.js +++ b/www/code/html-patcher.js @@ -95,7 +95,7 @@ define([ if (PARANOIA && getInnerHTML(dom) !== docText) { throw new Error(); } } - if (PARANOIA && docText.indexOf(content, idx) !== idx) { throw new Error() } + if (PARANOIA && docText.indexOf(content, idx) !== idx) { throw new Error(); } return idx; };