Added handlebars.helpers (if_eq, etc)

This commit is contained in:
Mark McDowall 2013-06-26 17:29:48 -07:00
parent 281790ff0a
commit 2fd73ea446
5 changed files with 156 additions and 3 deletions

View file

@ -7,6 +7,7 @@ require.config({
'backbone' : 'JsLibraries/backbone',
'sugar' : 'JsLibraries/sugar',
'handlebars' : 'JsLibraries/handlebars.runtime',
'handlebars.helpers' : 'JsLibraries/handlebars.helpers',
'bootstrap' : 'JsLibraries/bootstrap',
'backbone.mutators' : 'JsLibraries/backbone.mutators',
'backbone.deepmodel' : 'JsLibraries/backbone.deep.model',
@ -159,6 +160,13 @@ require.config({
[
'backgrid'
]
},
'handlebars.helpers': {
deps:
[
'handlebars'
]
}
}
});