helpcenter/Web/js/help/search.enter.js

5 lines
153 B
JavaScript
Raw Normal View History

2018-07-13 12:35:52 +00:00
$(function() {
$("#txtSearch").unbind("keyup").bind("keyup", function(n) {
return 13 == n.keyCode ? (Search(path), !1) : void 0
})
});