const ENTER_KEY = 13;
const ESC_KEY = 27;
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();