mirror of
https://github.com/webbukkit/dynmap.git
synced 2024-11-12 13:34:47 +01:00
corrected the json string in sendChat()
This commit is contained in:
parent
723e7da8d3
commit
61c6f4a086
@ -5,10 +5,10 @@ function sendChat(message) {
|
||||
url: "http://jsonip.appspot.com/?callback=?",
|
||||
dataType: "jsonp",
|
||||
success: function(getip) {
|
||||
var data = { name: getip.ip, message: message };
|
||||
var data = '{"name":"'+getip.ip+'","message":"'+message+'"}';
|
||||
$.ajax({
|
||||
type: 'POST',
|
||||
url: '/up/sendmessage',
|
||||
url: 'http://prosrv.info:8123/up/sendmessage',
|
||||
data: data,
|
||||
dataType: 'json',
|
||||
success: function(response) {
|
||||
|
@ -210,7 +210,7 @@ DynMap.prototype = {
|
||||
.attr({
|
||||
id: 'chatinput',
|
||||
type: 'text',
|
||||
value: 'not working yet'
|
||||
value: ''
|
||||
})
|
||||
.keydown(function(event) {
|
||||
if (event.keyCode == '13') {
|
||||
|
Loading…
Reference in New Issue
Block a user