Added a missing var statement.

This commit is contained in:
Nick Fisher
2012-01-17 07:16:19 +01:00
parent 6040149cf8
commit 58e2c2410f
+1 -1
View File
@@ -47,7 +47,7 @@ Handlebars.VM = {
},
noop: function() { return ""; },
invokePartial: function(partial, name, context, helpers, partials, data) {
options = { helpers: helpers, partials: partials, data: data };
var options = { helpers: helpers, partials: partials, data: data };
if(partial === undefined) {
throw new Handlebars.Exception("The partial " + name + " could not be found");