This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
----------------------------------------------------------------------------------------- | |
-- | |
-- modal.lua | |
-- | |
-- Modal dialog for Corona SDK | |
-- V. Sergeyev | |
-- | |
-- Usage: | |
-- showDialog("You completed the level. \n1st place.", "Next level", "level2", beforeNext) | |
-- |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
this.addEventListener('touchstart', function(e) { | |
for(var i in e.touches) { | |
var touch = e.touches[i]; | |
var node = touch.target; | |
if (node.className == 'bubble') { | |
node.className = 'bubble done'; | |
PhoneGap.exec("SoundPlug.play", "sound.m4a"); | |
} | |
} |
NewerOlder