Нашел вот такое решение. Меняем прокрутку с Y на X и все работает.
jQuery(function ($) {
var $doc = $(document),
ratio = $doc.width() / $(window).width(), //отношение окна к общей ширене блока, чтобы тянуть весь блок.
mousepos, to;
$doc.on('mousedown', '#content', dragstart);
function dragstart(e) {
e.preventDefault();
mousepos = e.screenX;
$doc.on('mousemove.drag', drag); //в неймспейсе drag, чтобы потом отключить безболезненно для остальных листенеров
$doc.one('mouseup', dragstop);
}
function drag(e) {
clearTimeout(to);
var delta = (e.screenX - mousepos) * ratio;
to = setTimeout(function () { // таймаут чтобы события от мыши не перекрывали друг друга,
$doc.scrollLeft($doc.scrollLeft() + delta);
mousepos = e.screenX;
}, 1);
}
function dragstop() {
$doc.off('mousemove.drag'); //отключаем свой mousemove.
}
});