Move compile to the right spot

This commit is contained in:
wycats
2010-12-29 19:09:55 -08:00
parent 5170e1459f
commit e20c57c9b2
2 changed files with 2 additions and 2 deletions
-2
View File
@@ -30,8 +30,6 @@ Handlebars.Runtime.compile = function(string) {
};
};
Handlebars.compile = Handlebars.VM.compile;
Handlebars.helpers = {};
Handlebars.partials = {};
+2
View File
@@ -623,5 +623,7 @@ Handlebars.VM = {
}
}
};
Handlebars.compile = Handlebars.VM.compile;
// END(BROWSER)