[add] Mapping enter key

This commit is contained in:
Jose Pabl Domingo Aramburo Sanchez 2018-08-12 09:13:00 -06:00
parent 697d0fe769
commit de84da4482

View File

@ -1,3 +1,9 @@
$(document).keypress(function(e) {
if(e.which == 13) {
processLogin();
}
});
function processLogin() { function processLogin() {
var baseUrl = getbaseUrl(); var baseUrl = getbaseUrl();