diff options
author | kpdecker <kpdecker@gmail.com> | 2014-03-05 15:07:19 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2014-03-05 15:07:19 -0600 |
commit | 10168cb0a94a7472f3a0ac1b4776391d8fbe1fb0 (patch) | |
tree | e18b7de635544a0afba7af7fa202e9dc861d8fef /spec/string-params.js | |
parent | 66538cc7fa9b285a97ba8f0ee45c81ebc3672dcf (diff) | |
download | handlebars.js-10168cb0a94a7472f3a0ac1b4776391d8fbe1fb0.zip handlebars.js-10168cb0a94a7472f3a0ac1b4776391d8fbe1fb0.tar.gz handlebars.js-10168cb0a94a7472f3a0ac1b4776391d8fbe1fb0.tar.bz2 |
Remove keyword that chokes up IE tests
Diffstat (limited to 'spec/string-params.js')
-rw-r--r-- | spec/string-params.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/string-params.js b/spec/string-params.js index 1cebc6f..2e88cf1 100644 --- a/spec/string-params.js +++ b/spec/string-params.js @@ -147,7 +147,7 @@ describe('string params mode', function() { var template = CompilerContext.compile('{{#with content}}{{#view}}{{firstName}} {{lastName}}{{/view}}{{/with}}', {stringParams: true}); var helpers = { - with: function(options) { + 'with': function(options) { return "WITH"; }, view: function() { |