render image urls

This commit is contained in:
Anthony Minessale 2014-07-25 01:31:35 +05:00
parent 4f1b09a3ca
commit a47dc4b5d0
2 changed files with 13 additions and 1 deletions

View File

@ -50,6 +50,11 @@
color: #ff3333;
}
.chatimg
{
max-width:100px;
}
.l1
{
border:1;

View File

@ -112,12 +112,19 @@ var callbacks = {
}
break;
case $.verto.enum.message.info:
var body = data.body.replace(/(http[s]{0,1}:\/\/\S+)/g, "<a target='_blank' href='$1'>$1<\/a>");
var body = data.body;
if (body.match(/\.gif|\.jpg|\.jpeg|\.png/)) {
body = body.replace(/(http[s]{0,1}:\/\/\S+)/g, "<a target='_blank' href='$1'>$1<br><img border='0' class='chatimg' src='$1'><\/a>");
} else {
body = body.replace(/(http[s]{0,1}:\/\/\S+)/g, "<a target='_blank' href='$1'>$1<\/a>");
}
if (body.slice(-1) !== "\n") {
body += "\n";
}
body = body.replace(/(?:\r\n|\r|\n)/g, '<br />');
var from = data.from_msg_name || data.from;
$("#chatwin").append("<span class=chatuid>" + from + ":</span><br>" + body);