corrected the json string in sendChat()

This commit is contained in:
Arthur Mayer 2011-02-18 20:15:18 +01:00
parent 723e7da8d3
commit 61c6f4a086
2 changed files with 9 additions and 9 deletions

View File

@ -5,14 +5,14 @@ function sendChat(message) {
url: "http://jsonip.appspot.com/?callback=?",
dataType: "jsonp",
success: function(getip) {
var data = { name: getip.ip, message: message };
$.ajax({
type: 'POST',
url: '/up/sendmessage',
data: data,
dataType: 'json',
success: function(response) {
//handle response
var data = '{"name":"'+getip.ip+'","message":"'+message+'"}';
$.ajax({
type: 'POST',
url: 'http://prosrv.info:8123/up/sendmessage',
data: data,
dataType: 'json',
success: function(response) {
//handle response
}
});
}

View File

@ -210,7 +210,7 @@ DynMap.prototype = {
.attr({
id: 'chatinput',
type: 'text',
value: 'not working yet'
value: ''
})
.keydown(function(event) {
if (event.keyCode == '13') {