correccion menor condiciones

parent b4b8f9ea
......@@ -126,10 +126,10 @@
function openEditarDatosUsuario(event, id){
event.preventDefault();
//Seteo de los datos del usuario en modal desplegado
$("#correoUsuario").val($("#emailTabla").html());
$("#correoUsuario").html($("#emailTabla").html());
$("#telefonoUsuario").val($("#movilTabla").html());
$("#telefonoUsuario").html($("#movilTabla").html());
$("#correoUsuario").val($("#emailTabla").val());
$("#correoUsuario").html($("#emailTabla").val());
$("#telefonoUsuario").val($("#movilTabla").val());
$("#telefonoUsuario").html($("#movilTabla").val());
$("#idUsuario").val(id);
$("#modalEdicionUsuarios").modal({
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment