# Pastebin 5frIMG8B keydownEvent(data, event) { if (event.keyCode === 13) { // Enter this.search(data, event); } else { /* * Knockout calls preventDefault unless you return true. Allows * people to actually enter text. */ return true; } }