nekman / keynavigator

Keynavigation plugin for jQuery/Zepto.
http://nekman.github.io/keynavigator/
0 stars 1 forks source link

Scroll page #7

Open araslanov-e opened 10 years ago

araslanov-e commented 10 years ago

Whether it is possible to scroll the page with the navigation on the table?

araslanov-e commented 10 years ago
$rows.on 'up', (e) ->
  if ($(this).offset().top - 100 < $(window).scrollTop())
    $(document).scrollTop($(window).scrollTop() - 100)
$rows.on 'down', (e) ->
  if ($(this).offset().top + $(this).height() + 100 > $(window).scrollTop() + $(window).height())
    $(document).scrollTop($(window).scrollTop() + 100)
miguel-serrano commented 8 years ago

Thk araslanov-e. Great fixing in custom code ;)