2011-03-16 01:17:58 +01:00
|
|
|
var ip;
|
|
|
|
$.ajax({
|
|
|
|
type: "GET",
|
|
|
|
url: "http://jsonip.appspot.com/?callback=?",
|
|
|
|
dataType: "jsonp",
|
|
|
|
success: function(getip) { ip = getip.ip; }
|
|
|
|
});
|
2011-03-10 07:11:43 +01:00
|
|
|
function sendChat(me, message) {
|
2011-03-16 01:17:58 +01:00
|
|
|
var data = '{"name":"'+ip+'","message":"'+message+'"}';
|
2011-02-18 10:21:55 +01:00
|
|
|
$.ajax({
|
2011-03-16 01:17:58 +01:00
|
|
|
type: 'POST',
|
|
|
|
url: 'up/sendmessage',
|
|
|
|
data: data,
|
|
|
|
dataType: 'json',
|
|
|
|
success: function(response) {
|
|
|
|
//handle response
|
|
|
|
if(response)
|
|
|
|
me.onPlayerChat('', response);
|
2011-02-18 10:21:55 +01:00
|
|
|
}
|
|
|
|
});
|
2011-03-16 01:17:58 +01:00
|
|
|
}
|