at path:
ROOT
/
sistema
/
assets
/
js
/
modalertas.js
run:
R
W
Run
init-scripts
DIR
2026-04-09 04:12:40
R
W
Run
ajax.js
390 By
2020-03-21 21:04:06
R
W
Run
Delete
Rename
apuntes.js
3.16 KB
2020-09-04 15:07:24
R
W
Run
Delete
Rename
dashboard.js
3.28 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
index.html
0 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
main.js
894 By
2018-11-08 02:46:18
R
W
Run
Delete
Rename
modacceso.js
34.52 KB
2020-07-31 00:11:56
R
W
Run
Delete
Rename
modalertas.js
2.55 KB
2020-11-02 20:27:14
R
W
Run
Delete
Rename
modceproceso.js
57.56 KB
2020-11-09 23:40:36
R
W
Run
Delete
Rename
modcms.js
333.75 KB
2020-11-16 21:17:02
R
W
Run
Delete
Rename
modpersonal.js
32.37 KB
2020-05-23 19:43:12
R
W
Run
Delete
Rename
modproyectos.js
70.66 KB
2020-06-13 00:57:06
R
W
Run
Delete
Rename
web.js
5.77 KB
2020-09-21 22:29:16
R
W
Run
Delete
Rename
widgets.js
6.09 KB
2018-11-08 02:46:18
R
W
Run
Delete
Rename
error_log
up
📄
modalertas.js
Save
// JavaScript Document function operacion_realizada() { swal({ title: "Mensaje", text: "Se Realizo la operacion.", icon: "success", timer: 3000, }); } function operacion_error() { swal({ title: "Error", text: "No se Realizo la Operacion.", icon: "error", timer: 3000, }); } function operacion_error_imagen() { swal({ title: "Error", text: "Error en subir imagen, debe ser menos de 1 MB.", icon: "error", timer: 3000, }); } function operacion_login_error() { swal({ title: "Error", text: "Accesos no son los correctos, por favor volver a ingresar .", icon: "error", timer: 3000, }); } function operacion_vinculada() { swal({ title: "Alerta", text: "No se puede eleminar, existe informacion vinculada.", icon: "info", timer: 3000, }); } function vinculo_sistemaweb() { self.location='sistemaweb.php'; } function vinculo_login() { self.location='login.php'; } function vinculo_sistemaweb_cargos() { self.location='sistemaweb_cargos.php'; } function operacion_recuperar_clave_error() { swal({ title: "Alerta", text: "Informació no se encuentra en la base de Datos, por favor revise los datos ingresados.", icon: "info", timer: 3000, }); } function operacion_recuperar_clave_exito() { swal({ title: "Mensaje", text: "Le enviamos sus accesos a su correo electrónico.", icon: "success", timer: 3000, }); } function icono_cargar() { var ajax=nuevoAjax(); url="modacceso/icono_cargar.php"; ajax.open("POST", url, true); ajax.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); ajax.send(); ajax.onreadystatechange=function(){ if (ajax.readyState==4) { //alert("ingreso a respuesta"); var respuesta=ajax.responseText; //Mostramos capa barrera //document.getElementById('div_contenidogeneral').innerHTML=''; document.getElementById('div_bloque_icons').style.display='block'; document.getElementById('div_bloque_icons').innerHTML="<br><br><center><img src='images/cargandom2.gif' width='80' height='80'></center>"; document.getElementById('div_bloque_icons').innerHTML=respuesta; } } }