http requests changed to POST
git-svn-id: https://beef.googlecode.com/svn/trunk@523 b87d56ec-f9c0-11de-8c8a-61c5e9addfc9
This commit is contained in:
@@ -37,6 +37,7 @@ var ZombiesMgr = function(zombies) {
|
|||||||
var updateZombies = function(){
|
var updateZombies = function(){
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: '/ui/zombies/select/offline/simple.json',
|
url: '/ui/zombies/select/offline/simple.json',
|
||||||
|
method: 'POST',
|
||||||
success: function(response) {
|
success: function(response) {
|
||||||
var offline_zombies = Ext.util.JSON.decode(response.responseText);
|
var offline_zombies = Ext.util.JSON.decode(response.responseText);
|
||||||
|
|
||||||
@@ -53,6 +54,7 @@ var ZombiesMgr = function(zombies) {
|
|||||||
|
|
||||||
Ext.Ajax.request({
|
Ext.Ajax.request({
|
||||||
url: '/ui/zombies/select/online/simple.json',
|
url: '/ui/zombies/select/online/simple.json',
|
||||||
|
method: 'POST',
|
||||||
success: function(response){
|
success: function(response){
|
||||||
var online_zombies = Ext.util.JSON.decode(response.responseText);
|
var online_zombies = Ext.util.JSON.decode(response.responseText);
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user