Skip to content

Commit

Permalink
partials/fix: return raw value instead of underscore wrapped object
Browse files Browse the repository at this point in the history
  • Loading branch information
vieron committed Apr 29, 2014
1 parent 97db86b commit 54e1d64
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hbs.js
Original file line number Diff line number Diff line change
Expand Up @@ -388,7 +388,7 @@ define([
fetchText(path, function(text) {
// for some reason it doesn't include hbs _first_ when i don't add it here...
var nodes = Handlebars.parse(text);
var partials = findPartialDeps( nodes );
var partials = findPartialDeps( nodes ).value();
var meta = getMetaData( nodes );
var extDeps = getExternalDeps( nodes );
var vars = extDeps.vars;
Expand Down

0 comments on commit 54e1d64

Please sign in to comment.