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-20 05:16:47 -05:00
|
|
|
d3.json("/admin/json/mensaje/"+msg_id ,function(d){
|
|
|
|
|
if(d !=undefined) {if(d != 0){
|
|
|
|
|
d3.select("p#fecha").text(d.imdate);
|
|
|
|
|
d3.select("p#correo").text(d.imail);
|
|
|
|
|
d3.select("p#nombre").text(d.imname);
|
|
|
|
|
d3.select("p#mensaje").text(d.immsg);
|
2018-07-18 04:28:26 -05:00
|
|
|
}}});
|
|
|
|
|
});
|