Hi i am using jquery mobile and alongwith the splitview plugin
http://asyraf9.github.com/jquery-mobile/
what i couldnt get around to was that why was the splitview plugin made to work only with screens which satisfy the following condition.
var $query = $.mobile.media('screen and (min-width: 480px)') && ($.mobile.media('(-webkit-max-device-pixel-ratio: 1.2)') || $.mobile.media('max--moz-device-pixel-ratio: 1.2)'));
$.support.splitview = ($query || ($.mobile.browser.ie && $(this).width() >= 480)) && $.mobile.ajaxEnabled;
the splitview plugin works for all screens, but there are some scrolling bugs for smaller screens which dont satisfy the above conditions. it doesnt scroll properly. cant we fix those instead of not using splitview plugin entirely if these conditions are not met.
Is there a particilar reason why these conditions were kept?
Please help.