Clicking a button in the pager reloads the entire page when Pager Event "Mouseover" is selected and any pager button is 'clicked'. This probably isn't a huge issue, but looks 'sloppy' and is kindof disorienting depending on how far down the page the block is located as once the page reloads you have to scroll back down to the block.

You can observe what I am referring to at:

http://www.thenewvilla.villacollectionsdesign.com

For now, I am not opposed to setting the event to "click" but I thought I should bring the issue up.

(Observed this effect in both Upright 50 & gradient-green50p)

Comments

ppblaauw’s picture

Status: Active » Postponed (maintainer needs more info)

You can add the following javascript to the ddblock module .js file: js/ddblock.js

      // disable click if pager is mouseover
      if (ddblockSettings.pagerEvent == 'mouseover') {
          $("#ddblock-" + pager + "-" + ddblockSettings.block + " a.pager-link").click(function() {
            return false;
          });
      }

You can place this after the: //set event which drives the pager navigation code.

Did not make a patch for this, but hope this helps you further.
Will be implemented in next release of the module