Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ You can return false to prevent the default. See demo for full example.
Example:
```javascript
// Show auto-complete on tab keys
jqconsole.SetKeyPressHanlder(function(e) {
jqconsole.SetControlKeyHandler(function(e) {
if (e.which === 9) {
$('.suggestions').show();
return false;
Expand Down