You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by pa...@apache.org on 2012/07/09 17:05:04 UTC

git commit: WICKET-4642: add behaviors after the session is bound

Updated Branches:
  refs/heads/master 73d5552c5 -> 01e970392


WICKET-4642: add behaviors after the session is bound


Project: http://git-wip-us.apache.org/repos/asf/wicket/repo
Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/01e97039
Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/01e97039
Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/01e97039

Branch: refs/heads/master
Commit: 01e97039295734c5625345e90ddba4eb88486861
Parents: 73d5552
Author: Emond Papegaaij <pa...@apache.org>
Authored: Mon Jul 9 17:04:14 2012 +0200
Committer: Emond Papegaaij <pa...@apache.org>
Committed: Mon Jul 9 17:04:14 2012 +0200

----------------------------------------------------------------------
 .../org/apache/wicket/atmosphere/EventBus.java     |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/01e97039/wicket-experimental/wicket-atmosphere/src/main/java/org/apache/wicket/atmosphere/EventBus.java
----------------------------------------------------------------------
diff --git a/wicket-experimental/wicket-atmosphere/src/main/java/org/apache/wicket/atmosphere/EventBus.java b/wicket-experimental/wicket-atmosphere/src/main/java/org/apache/wicket/atmosphere/EventBus.java
index 38d5364..a116cdd 100644
--- a/wicket-experimental/wicket-atmosphere/src/main/java/org/apache/wicket/atmosphere/EventBus.java
+++ b/wicket-experimental/wicket-atmosphere/src/main/java/org/apache/wicket/atmosphere/EventBus.java
@@ -79,7 +79,7 @@ public class EventBus implements UnboundListener
 		this.application = application;
 		application.setMetaData(EVENT_BUS_KEY, this);
 		application.mount(new AtmosphereRequestMapper());
-		application.getComponentPreOnBeforeRenderListeners().add(
+		application.getComponentPostOnBeforeRenderListeners().add(
 			new AtmosphereEventSubscriptionCollector(this));
 		application.getSessionStore().registerUnboundListener(this);
 		broadcaster = BroadcasterFactory.getDefault().lookup("/*");