blob: e5abfb7b58264c735ef029e3f02a952c0d168377 [file] [log] [blame]
qiaoweif044a742019-07-10 16:04:20 +08001var app = {
2
3 // Application Constructor
4 initialize: function() {
5 document.addEventListener('deviceready', this.onDeviceReady.bind(this), false);
6 },
7
8 onDeviceReady: function() {
9 this.receivedEvent('deviceready');
10 var uid = window.localStorage.getItem("uid");
11
12 },
13
14 // Update DOM on a Received Event
15 receivedEvent: function(id) {
16
17 }
18};
19app.initialize();