diff --git a/lib/js/haml_coffee_assets.js b/lib/js/haml_coffee_assets.js index cc5329b..640faf9 100644 --- a/lib/js/haml_coffee_assets.js +++ b/lib/js/haml_coffee_assets.js @@ -71,7 +71,7 @@ var HamlCoffeeAssets = (function(){ var hamlc = CoffeeScript.compile(compiler.precompile(), { bare: true }); if (extendScope) { - template = '(function(context) {\n with(context || {}) {\n return (function() {\n' + hamlc.replace(/^(.*)$/mg, ' $1') + '\n };\n }).call(context);\n});'; + template = '(function(context) {\n with(context || {}) {\n return (function() {\n' + hamlc.replace(/^(.*)$/mg, ' $1') + '\n }).call(context);\n };\n});'; } else { template = '(function(context) {\n return (function() {\n' + hamlc.replace(/^(.*)$/mg, ' $1') + '\n }).call(context);\n});'; }