1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
-
- var app = {
-
- initialize: function() {
- document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
- },
-
-
-
-
-
- onDeviceReady: function() {
-
-
- },
-
-
- receivedEvent: function(id) {
- var parentElement = document.getElementById(id);
- var listeningElement = parentElement.querySelector('.listening');
- var receivedElement = parentElement.querySelector('.received');
-
- listeningElement.setAttribute('style', 'display:none;');
- receivedElement.setAttribute('style', 'display:block;');
-
- console.log('Received Event: ' + id);
- }
- };
-
- app.initialize();
|