| qiaowei | f044a74 | 2019-07-10 16:04:20 +0800 | [diff] [blame] | 1 | var app = { |
| 2 | |||||
| 3 | // Application Constructor | ||||
| 4 | initialize: function() { | ||||
| 5 | document.addEventListener('deviceready', this.onDeviceReady.bind(this), false); | ||||
| 6 | }, | ||||
| 7 | |||||
| 8 | onDeviceReady: function() { | ||||
| 9 | }, | ||||
| 10 | editPwd: function() { | ||||
| 11 | window.location = "editpaypwd.html"; | ||||
| 12 | }, | ||||
| 13 | findPwd: function() { | ||||
| 14 | window.location = "findpaypwd.html"; | ||||
| 15 | } | ||||
| 16 | }; | ||||
| 17 | app.initialize(); | ||||