1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768 |
- mui.ready(function() {
- var feedBack = document.getElementById("feedBack");
- var claims = document.getElementById("claims");
- var contactService = document.getElementById("contactService");
-
-
-
- feedBack.addEventListener('tap',function(){
- var userid = plus.storage.getItem('userid');
- console.log(userid);
- mui.openWindow({
- url: '../html/feedback.html',
- id: '../html/feedback.html',
- show: {
- aniShow: "slide-in-right"
- },
- extras:{userId:userid}
- });
-
- });
-
-
- claims.addEventListener('tap',function(){
- var userid = plus.storage.getItem('userid');
- console.log(userid);
- mui.openWindow({
- url: '../html/claims.html',
- id: '../html/claims.html',
- show: {
- aniShow: "slide-in-right"
- },
- extras:{userId:userid}
- });
-
- });
-
-
-
- var userid = plus.storage.getItem('userid');
- console.log(userid);
- mui.openWindow({
- url: '../html/faq.html',
- id: '../html/faq.html',
- show: {
- aniShow: "slide-in-right"
- },
- extras:{userId:userid}
- });
-
- });*/
-
-
- contactService.addEventListener('tap',function(){
- var userid = plus.storage.getItem('userid');
- console.log(userid);
- mui.openWindow({
- url: '../html/contactservice.html',
- id: '../html/contactservice.html',
- show: {
- aniShow: "slide-in-right"
- },
- extras:{userId:userid}
- });
-
- });
-
- });
|