Finished factory pattern

This commit is contained in:
Tommy Messbauer
2012-08-29 15:07:15 -05:00
parent 7c4813b417
commit eccc7c35ca
2 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
var handlebars = require("./parser").parser;
exports.attach = function(Handlebars) {
// BEGIN(BROWSER)
Handlebars.Parser = handlebars;
+3 -2
View File
@@ -1,8 +1,9 @@
var compilerbase = require("./base");
exports.attach = function(Handlebars) {
compilerbase.attach(Handlebars);
// BEGIN(BROWSER)
/*jshint eqnull:true*/