bungloo-plugins/it.to.work/scrollingElement.js
2013-04-25 12:36:49 +02:00

9 lines
223 B
JavaScript

define(['jquery'], function($) {
var scrollingElement = $(document);
setTimeout(function() {
if ($('#content').css('overflow') == 'scroll')
scrollingElement = $('#content');
}, 1000);
return scrollingElement;
});