UNPKG

brite

Version:

DOM Centric Minimalistic MVC Framework

15 lines (13 loc) 325 B
/** * View: ProjectView * * View showing the project panel and manage all the edits related to a project and its tasks. * */ (function() { brite.registerView("ProjectView",{ create: function(){ return render("tmpl-ProjectView",{project:main.projectListTestData[0],tasks:main.taskListTestData}); } }); })();