first commit

This commit is contained in:
Paolo 2013-04-25 12:22:42 +02:00
commit 8e0c8a1497
8 changed files with 380 additions and 0 deletions

View file

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