Created
November 17, 2011 19:07
-
-
Save ppcano/1374108 to your computer and use it in GitHub Desktop.
Ripple, SC2 triggering phonegap events
This file contains 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
TestView.View1.app = SC.Application.create({ | |
customEvents: { | |
backbutton : 'backButton', | |
deviceready : 'deviceReady', | |
resume : 'resume' | |
} | |
}); |
This file contains 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
var doc = require('ripple/emulatorBridge').document(); | |
var evt = doc.createEvent("Events"); | |
evt.initEvent('resume'); | |
doc.dispatchEvent(evt); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment