Fix for Scroll to the Views configuration form

  1. diff --git js/ajax.js js/ajax.js
  2. index a8f70bb..52c8292 100644
  3. --- js/ajax.js
  4. +++ js/ajax.js
  5. @@ -13,6 +13,8 @@ Drupal.Views.Ajax = Drupal.Views.Ajax || {};
  6.  Drupal.Views.Ajax.setForm = function(title, output) {
  7.    $(Drupal.settings.views.ajax.title).html(title);
  8.    $(Drupal.settings.views.ajax.id).html(output);
  9. +  var destination = $(Drupal.settings.views.ajax.id).parent().offset().top;
  10. +  $('html:not(:animated), body:not(:animated)').animate({scrollTop: destination }, 'slow');
  11.  }

Submit Fix

Any tags you'd like to associate with your code, delimitered by commas (example: Views, CCK, Module, etc).
Select the syntax highlighting mode to use.