webkit-scrollbar for blog only, and removed it for

MobileSafari as you can't scroll the page properly
with it enabled.
This commit is contained in:
2010-04-06 00:58:08 +03:00
parent e32e49566b
commit f94d902589
5 changed files with 61 additions and 48 deletions

View File

@@ -0,0 +1,5 @@
$(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");
};
});