The container div for the previous and next links in the Drupal.theme.prototype.viewsCyclePrevNext function in views_cycle.js only contains a unique id. This should also have a class added to this div that is general and not unique.

Drupal.theme.prototype.viewsCyclePrevNext = function(nextLabel, prevLabel, id) {
  return '<div id="' + id + '" class="views-cycle-prev-next-links"><a href="#" class="views-cycle-prev">' + prevLabel + '</a> <a href="#" class="views-cycle-next">' + nextLabel + "</a></div>\n";
}

Comments

Crell’s picture

Status: Active » Fixed

Indeed, so it does. Committed. Thanks!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.