• Jump To … +
    ./todomvc/js/app.js ./todomvc/js/todo.js ./todomvc/js/todos.js
  • app.js

  • ¶

    This is documentation for the implementation of the TodoMVC using the Seemple.js framework as a basis. The working version is located on this page.

  • ¶

    As it is required by the specification of TodoMVC, assign the codes of keys to the corresponding variables.

    const ENTER_KEY = 13;
    const ESC_KEY = 27;
  • ¶

    Initialize the application

    window.app = new Todos();
  • ¶

    See todos.js and todo.js