Return-Path: X-Original-To: apmail-tapestry-dev-archive@www.apache.org Delivered-To: apmail-tapestry-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 46352F9CE for ; Tue, 28 May 2013 19:10:55 +0000 (UTC) Received: (qmail 74777 invoked by uid 500); 28 May 2013 19:10:55 -0000 Delivered-To: apmail-tapestry-dev-archive@tapestry.apache.org Received: (qmail 74750 invoked by uid 500); 28 May 2013 19:10:55 -0000 Mailing-List: contact commits-help@tapestry.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@tapestry.apache.org Delivered-To: mailing list commits@tapestry.apache.org Received: (qmail 74742 invoked by uid 99); 28 May 2013 19:10:54 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 28 May 2013 19:10:54 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 8C19489BE7A; Tue, 28 May 2013 19:10:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: hlship@apache.org To: commits@tapestry.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: TAP5-2103: jQuery version of text() does not work Date: Tue, 28 May 2013 19:10:54 +0000 (UTC) Updated Branches: refs/heads/master e43f5781b -> 413a2af7a TAP5-2103: jQuery version of text() does not work Project: http://git-wip-us.apache.org/repos/asf/tapestry-5/repo Commit: http://git-wip-us.apache.org/repos/asf/tapestry-5/commit/413a2af7 Tree: http://git-wip-us.apache.org/repos/asf/tapestry-5/tree/413a2af7 Diff: http://git-wip-us.apache.org/repos/asf/tapestry-5/diff/413a2af7 Branch: refs/heads/master Commit: 413a2af7a69af827742f42cac65b161be4c4487a Parents: e43f578 Author: Howard M. Lewis Ship Authored: Tue May 28 12:10:50 2013 -0700 Committer: Howard M. Lewis Ship Committed: Tue May 28 12:10:50 2013 -0700 ---------------------------------------------------------------------- .../org/apache/tapestry5/t5-core-dom-jquery.coffee | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tapestry-5/blob/413a2af7/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee ---------------------------------------------------------------------- diff --git a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee index 32ec62e..f6ed977 100644 --- a/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee +++ b/tapestry-core/src/main/coffeescript/org/apache/tapestry5/t5-core-dom-jquery.coffee @@ -364,7 +364,7 @@ define ["_", "./utils", "jquery"], (_, utils, $) -> return this # Returns the text of the element (and its children). - text: -> @element.text() + text: -> @$.text() # Wrapper around the `jqXHR` object class ResponseWrapper