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=?", url: "http://jsonip.appspot.com/?callback=?",
dataType: "jsonp", dataType: "jsonp",
success: function(getip) { success: function(getip) {
var data = { name: getip.ip, message: message }; var data = '{"name":"'+getip.ip+'","message":"'+message+'"}';
$.ajax({ $.ajax({
type: 'POST', type: 'POST',
url: '/up/sendmessage', url: 'http://prosrv.info:8123/up/sendmessage',
data: data, data: data,
dataType: 'json', dataType: 'json',
success: function(response) { success: function(response) {
//handle response //handle response
} }
}); });
} }

View File

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