Files
jimeh.me-v3.0/source/site/javascripts/webkit-scrollbar.js

11 lines
324 B
JavaScript

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