html-patcher.js : add missing semicolon

This commit is contained in:
ansuz 2016-02-12 11:17:10 +01:00
parent 62ea172ff4
commit d1dd497457

View File

@ -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;
};