fix Blaze._toDOM

This commit is contained in:
David Greenspan
2014-06-20 10:04:00 -07:00
parent 690d6d5ab2
commit ff0708bb39

View File

@@ -231,6 +231,6 @@ Blaze.ToDOMVisitor = HTML.Visitor.extend({
// For example, if `content` is a string, it will be converted
// into a text node. If it is an HTMLJS node, then it will
// be converted into a DOM element.
Blaze.toDOM = function (content) {
Blaze._toDOM = function (content) {
return (new Blaze.ToDOMVisitor).visit(content, []);
};