You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2012/02/06 08:49:12 UTC

[1/4] git commit: WICKET-4364 Think of a way to reintroduce show|hideIncrementally with the new Ajax impl

Updated Branches:
  refs/heads/master 31726809e -> 0e1199e29


WICKET-4364
Think of a way to reintroduce show|hideIncrementally with the new Ajax impl


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

Branch: refs/heads/master
Commit: c2d87e6501a719c57a65f3debe0f8bcf3017aeaf
Parents: 3172680
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Fri Feb 3 15:50:35 2012 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Mon Feb 6 09:48:42 2012 +0200

----------------------------------------------------------------------
 .../wicket/ajax/res/js/wicket-ajax-jquery.js       |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/wicket/blob/c2d87e65/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 8b9cf3c..6600590 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
@@ -508,7 +508,7 @@
 
 					if (attrs.i) {
 						// show the indicator
-						Wicket.DOM.show(attrs.i);
+						Wicket.DOM.showIncrementally(attrs.i);
 					}
 				},
 				data: data,
@@ -537,7 +537,7 @@
 				},
 				complete: function (jqXHR, textStatus) {
 					if (attrs.i) {
-						Wicket.DOM.hide(attrs.i);
+						Wicket.DOM.hideIncrementally(attrs.i);
 					}
 
 					self._executeHandlers(attrs.coh,