Files
jimeh.me-v3.0/source/site/javascripts/webkit-scrollbar.js
Jim Myhrberg f94d902589 webkit-scrollbar for blog only, and removed it for
MobileSafari as you can't scroll the page properly
with it enabled.
2010-04-06 01:07:14 +03:00

5 lines
205 B
JavaScript

$(document).ready(function(){
if (navigator.userAgent.match(/Mobile.*Safari|Safari.*Mobile/i) !== null) {
$("body").css("position", "static").css("overflow-y", "auto").css("overflow-x", "auto");
};
});