diff options
Diffstat (limited to 'examples/declarative')
-rwxr-xr-x | examples/declarative/tutorials/samegame/samegame4/content/samegame.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/examples/declarative/tutorials/samegame/samegame4/content/samegame.js b/examples/declarative/tutorials/samegame/samegame4/content/samegame.js index 58de55f..d5778fe 100755 --- a/examples/declarative/tutorials/samegame/samegame4/content/samegame.js +++ b/examples/declarative/tutorials/samegame/samegame4/content/samegame.js @@ -5,7 +5,7 @@ var maxY = 15; var maxIndex = maxX*maxY; var board = new Array(maxIndex); var tileSrc = "content/BoomBlock.qml"; -var scoresURL = "http://qtfx-nokia.trolltech.com.au/samegame/scores.php"; +//var scoresURL = "http://qtfx-nokia.trolltech.com.au/samegame/scores.php"; var scoresURL = ""; var timer; var component = createComponent(tileSrc); @@ -206,6 +206,7 @@ function createBlock(xIdx,yIdx){ return true; } +//![2] function saveHighScore(name) { if(scoresURL!="") sendHighScore(name); @@ -241,6 +242,7 @@ function saveHighScore(name) { } ); } +//![2] //![1] function sendHighScore(name) { |