UNPKG

todomvc

Version:

> Helping you select an MV\* framework

16 lines (11 loc) 262 B
/*global Sammy, jQuery, TodoApp */ (function (window, $) { 'use strict'; window.TodoApp = Sammy('#todoapp').use('Template'); TodoApp.notFound = function () { this.runRoute('get', '#/'); }; $(function () { TodoApp.run('#/'); }); })(window, jQuery);