Added missing semicolon

This commit is contained in:
benedikt willi 2014-03-26 16:01:45 +01:00
parent 4aba6f3146
commit 2d6bbeb643

View file

@ -95,7 +95,7 @@ define(function (require, exports, module) {
txtFrom = txtFrom.substr(0, txtFrom.indexOf("{"));
//take any comment off
txtFrom = txtFrom.replace(new RegExp(REGEX_PATTERNS.comment,'g'), '')
txtFrom = txtFrom.replace(new RegExp(REGEX_PATTERNS.comment,'g'), '');
var results = txtFrom.match(new RegExp(REGEX_PATTERNS.jsVariable,'g'));
switch(true) {