2018-07-18 04:28:26 -05:00
|
|
|
|
|
|
|
|
d3.select("select#sentry").on("change",function(){
|
|
|
|
|
var msg_id=d3.select("select#sentry").node().value;
|
2018-07-18 16:04:47 -05:00
|
|
|
d3.json("/admin/json/mensajes/"+msg_id ,function(d){
|
2018-07-18 04:28:26 -05:00
|
|
|
if(d[0] !=undefined) {if(d[0] != 0){
|
|
|
|
|
d3.select("p#fecha").text(d[0].imdate);
|
|
|
|
|
d3.select("p#correo").text(d[0].imail);
|
|
|
|
|
d3.select("p#nombre").text(d[0].imname);
|
|
|
|
|
d3.select("p#mensaje").text(d[0].immsg);
|
|
|
|
|
}}});
|
|
|
|
|
});
|