You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
473 B
12 lines
473 B
'use strict';
|
|
|
|
define(['app', 'AddSeries/RootFolders/RootFolderCollection'], function (app, rootFolders) {
|
|
|
|
Handlebars.registerHelper('rootFolderSelection', function () {
|
|
//TODO: We should be able to pass in the context, either an object or a property
|
|
|
|
var templateFunction = Marionette.TemplateCache.get('AddSeries/RootFolders/RootFolderSelectionTemplate');
|
|
return new Handlebars.SafeString(templateFunction(rootFolders.toJSON()));
|
|
});
|
|
});
|