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 2013/01/17 08:45:51 UTC

git commit: WICKET-4983 extra recursion on Wicket.DOM.get

Updated Branches:
  refs/heads/master cd84079bf -> 88cf83c39


WICKET-4983 extra recursion on Wicket.DOM.get


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

Branch: refs/heads/master
Commit: 88cf83c39d0355b53c4c207deff2e2395a89d707
Parents: cd84079
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Thu Jan 17 09:42:55 2013 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Thu Jan 17 09:42:55 2013 +0200

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


http://git-wip-us.apache.org/repos/asf/wicket/blob/88cf83c3/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 e16e1a8..feb00bf 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
@@ -1442,7 +1442,7 @@
 				if (arguments.length > 1) {
 					var e = [];
 					for (var i = 0; i < arguments.length; i++) {
-						e.push(Wicket.$(arguments[i]));
+						e.push(Wicket.DOM.get(arguments[i]));
 					}
 					return e;
 				} else if (typeof arg === 'string') {