With jquery_update 5.x-2.0 installed, the left/right arrows that scrolls the calendar block doesn't work. The inital AJAX works and a progress bar appears, but it's stuck at that location and the calendar does not reappear.

Comments

johndp’s picture

I'm experiencing the same thing here.

almiesel’s picture

I have the same problem ...

aritztg’s picture

Me too...

hutch’s picture

Which browser?
For what it's worth, it works in firefox with event 5.x-2.x-dev and latest jquery-update

aritztg’s picture

In Firefox 3.0.7 and IE6/7.
Event 5.x-1.0 and jquery_update 5.x-2.0

aritztg’s picture

I believe have a solution for me, just changing the ajax load method.

Open eventblock.js, delete all, and copy:

// Global killswitch
if (Drupal.jsEnabled) {
  $(document).ready(eventblock_update);
}

function eventblock_update(){
  $("#block-event-0 div.content a.updateblock").click(function() {
	$("#block-event-0 div.content").load($(this).href().replace("month", "block"), function(){ 
	  eventblock_update();
	});
	return false; 
  });
}
almiesel’s picture

Perfect!! Thanks so much ...

japerry’s picture

Status: Active » Closed (outdated)

Event for Drupal 8 is unrelated to older versions. If an issue similar to this one exists, please open a new issue with the 8.x branch.