UNPKG

todomvc

Version:

> Helping you select an MV\* framework

16 lines (12 loc) 282 B
/* global $, can */ (function () { 'use strict'; $(function () { // Set up a route that maps to the `filter` attribute can.route(':filter'); // Render #app-template $('#todoapp').html(can.view('app-template', {})); // Start the router can.route.ready(); }); })();