View Single Post
  #29  
Old 12-02-2012, 01:09 PM
 
Mhodge@q1w.net Mhodge@q1w.net is offline
 

Advanced Member
  
Join Date: Aug 2012
Posts: 55
 

Default Re: X-Cart Mobile module released

To be sure the switch view button is shown on a phone's browser including iPhones, I modified /Xcart_Mobile/customer/core.js

Change this:

}

if ((viewport.width >= 1000 || viewport.height >= 1000)) {
$('.switch-mobile').css({
'display': 'inline-block'
});

To:

}

if ((viewport.width >= 50 || viewport.height >= 50)) {
$('.switch-mobile').css({
'display': 'inline-block'
});
__________________
Mike
Reply With Quote