diff options
author | Alan Alpert <alan.alpert@nokia.com> | 2009-11-27 09:40:08 (GMT) |
---|---|---|
committer | Alan Alpert <alan.alpert@nokia.com> | 2009-11-27 09:41:44 (GMT) |
commit | f9aa040505c5c679bed4181e462fb4d2b9216fa6 (patch) | |
tree | 1ebe013d1c3ae06ff0d8c1961b10dfdc82f6b69b /demos | |
parent | 696b55195f1ad40a077683dbc533c73baf1536ee (diff) | |
download | Qt-f9aa040505c5c679bed4181e462fb4d2b9216fa6.zip Qt-f9aa040505c5c679bed4181e462fb4d2b9216fa6.tar.gz Qt-f9aa040505c5c679bed4181e462fb4d2b9216fa6.tar.bz2 |
Fix use of XmlHttpRequest in examples
Diffstat (limited to 'demos')
-rwxr-xr-x | demos/declarative/samegame/content/samegame.js | 1 | ||||
-rw-r--r-- | demos/declarative/twitter/content/HomeTitleBar.qml | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/demos/declarative/samegame/content/samegame.js b/demos/declarative/samegame/content/samegame.js index 3598c26..8651c84 100755 --- a/demos/declarative/samegame/content/samegame.js +++ b/demos/declarative/samegame/content/samegame.js @@ -235,6 +235,7 @@ function sendHighScore(name) { var postData = "name="+name+"&score="+gameCanvas.score +"&gridSize="+maxX+"x"+maxY +"&time="+Math.floor(timer/1000); postman.open("POST", scoresURL, true); + postman.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); postman.onreadystatechange = function() { if (postman.readyState == postman.DONE) { dialog.show("Your score has been uploaded."); diff --git a/demos/declarative/twitter/content/HomeTitleBar.qml b/demos/declarative/twitter/content/HomeTitleBar.qml index e5bdb85..c48befd 100644 --- a/demos/declarative/twitter/content/HomeTitleBar.qml +++ b/demos/declarative/twitter/content/HomeTitleBar.qml @@ -24,6 +24,7 @@ Item { titleBar.update(); } } + postman.setRequestHeader("Content-Type", "application/x-www-form-urlencoded"); postman.send(postData); editor.text = "" |