diff options
author | kpdecker <kpdecker@gmail.com> | 2013-12-31 21:20:59 -0600 |
---|---|---|
committer | kpdecker <kpdecker@gmail.com> | 2013-12-31 21:20:59 -0600 |
commit | e7e94dc69710ee6b4e77c4c992b54f29ef42b713 (patch) | |
tree | c259a586c07cf9b83c2d4a6ea0c2997ac087f9cb /lib/handlebars/compiler/javascript-compiler.js | |
parent | c1a93d33e78a2e498f3f57b1189193f69671d0dc (diff) | |
download | handlebars.js-e7e94dc69710ee6b4e77c4c992b54f29ef42b713.zip handlebars.js-e7e94dc69710ee6b4e77c4c992b54f29ef42b713.tar.gz handlebars.js-e7e94dc69710ee6b4e77c4c992b54f29ef42b713.tar.bz2 |
Whitespace cleanup
Diffstat (limited to 'lib/handlebars/compiler/javascript-compiler.js')
-rw-r--r-- | lib/handlebars/compiler/javascript-compiler.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/handlebars/compiler/javascript-compiler.js b/lib/handlebars/compiler/javascript-compiler.js index bc9636c..dc77ef6 100644 --- a/lib/handlebars/compiler/javascript-compiler.js +++ b/lib/handlebars/compiler/javascript-compiler.js @@ -504,9 +504,9 @@ JavaScriptCompiler.prototype = { this.push(helper.name + ' || ' + nonHelper); this.replaceStack(function(name) { - return name + ' ? ' + name + '.call(' + - helper.callParams + ") " + ": helperMissing.call(" + - helper.helperMissingParams + ")"; + return name + ' ? ' + + name + '.call(' + helper.callParams + ") " + + " : helperMissing.call(" + helper.helperMissingParams + ")"; }); }, @@ -843,7 +843,7 @@ JavaScriptCompiler.prototype = { } if (!inverse) { - this.context.aliases.self = "this"; + this.context.aliases.self = "this"; inverse = "self.noop"; } |