removed add series tab

This commit is contained in:
kay.one 2013-05-26 19:53:56 -07:00
commit 6e6df842a0
18 changed files with 87 additions and 151 deletions

View file

@ -0,0 +1,11 @@
'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()));
});
});