root/src/public/js/ListUtils.js

1
2
3
4
5
6
7
8
9
10
11
12
13
var ListUtils = {}

ListUtils.handleKeyDown = function(event) {
    if (event.keyCode == 13) { // enter
        if (document.activeElement && document.activeElement.tagName == "LI") {
            $(document.activeElement).click();
        }
    } else {
        return false;
    }
    event.preventDefault();
    return true;
}