You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by sv...@apache.org on 2015/11/12 11:02:55 UTC

wicket git commit: WICKET-6032 don't call done on redirect, it will be invoked from complete later

Repository: wicket
Updated Branches:
  refs/heads/wicket-6.x 6507bab6b -> 19f32b689


WICKET-6032 don't call done on redirect, it will be invoked from complete later


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

Branch: refs/heads/wicket-6.x
Commit: 19f32b68913c224588473b8750a76f3119c8cd15
Parents: 6507bab
Author: Sven Meier <sv...@apache.org>
Authored: Thu Nov 12 11:02:06 2015 +0100
Committer: Sven Meier <sv...@apache.org>
Committed: Thu Nov 12 11:02:06 2015 +0100

----------------------------------------------------------------------
 .../main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js   | 1 -
 1 file changed, 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/19f32b68/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
----------------------------------------------------------------------
diff --git a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
index 916cd25..033dac3 100644
--- a/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
+++ b/wicket-core/src/main/java/org/apache/wicket/ajax/res/js/wicket-ajax-jquery.js
@@ -774,7 +774,6 @@
 					// In case the page isn't really redirected. For example say the redirect is to an octet-stream.
 					// A file download popup will appear but the page in the browser won't change.
 					this.success(context);
-					this.done(context.attrs);
 
 					var rhttp  = /^http:\/\//,  // checks whether the string starts with http://
 					    rhttps = /^https:\/\//; // checks whether the string starts with https://