Merge pull request #12 from pixelspark/master
Fix issue "undefined variable result" in built scripts as well
This commit is contained in:
commit
015088b929
2 changed files with 2 additions and 2 deletions
|
@ -264,7 +264,7 @@ GradientParser.parse = (function() {
|
|||
error('Missing (');
|
||||
}
|
||||
|
||||
result = callback(captures);
|
||||
var result = callback(captures);
|
||||
|
||||
if (!scan(tokens.endCall)) {
|
||||
error('Missing )');
|
||||
|
|
|
@ -100,7 +100,7 @@ GradientParser.parse = (function() {
|
|||
error('Missing (');
|
||||
}
|
||||
|
||||
result = callback(captures);
|
||||
var result = callback(captures);
|
||||
|
||||
if (!scan(tokens.endCall)) {
|
||||
error('Missing )');
|
||||
|
|
Loading…
Reference in a new issue