From b40f639b63df9533b92029fa533f70db44997466 Mon Sep 17 00:00:00 2001 From: Michael Giuffrida Date: Wed, 3 Feb 2016 21:50:33 -0800 Subject: [PATCH] i suck at git --- src/standard/effectBuilder.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/standard/effectBuilder.html b/src/standard/effectBuilder.html index 27730ec447..a99d4d26b5 100644 --- a/src/standard/effectBuilder.html +++ b/src/standard/effectBuilder.html @@ -190,7 +190,7 @@ // method expressions are of the form: `name([arg1, arg2, .... argn])` _parseMethod: function(expression) { // tries to match valid javascript property names - var m = expression.match(/([^\s]+?)\((.*)\)/); + var m = expression.match(/([^\s]+?)\(([\s\S]*)\)/); if (m) { var sig = { method: m[1], static: true }; if (m[2].trim()) {