UNPKG

todomvc

Version:

> Helping you select an MV\* framework

40 lines (32 loc) 1.18 kB
/*global define */ define(function (require) { 'use strict'; var History = require('lavaca/net/History'); var Application = require('lavaca/mvc/Application'); var TodosController = require('app/net/TodosController'); var $ = require('$'); require('lavaca/ui/DustTemplate'); // Uncomment this section to use hash-based browser history instead of HTML5 // history. You should use hash-based history if there's no server-side // component supporting your app's routes. History.overrideStandardsMode(); // Override Lavaca's default view-root selector to match the TodoMVC template // file better Application.prototype.viewRootSelector = '#todoapp'; /** * @class app * @super Lavaca.mvc.Application * Global application-specific object */ var app = new Application(function () { // Initialize the routes this.router.add({ '/': [TodosController, 'home', {filter: 'all'}], '/active': [TodosController, 'home', {filter: 'active'}], '/completed': [TodosController, 'home', {filter: 'completed'}] }); // Patch learn sidebar links so they get ignored by the router $(document.body).find('aside.learn a').addClass('ignore'); }); return app; });