Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id F2117200D5F for ; Mon, 4 Dec 2017 00:20:28 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id E5C6A160C1A; Sun, 3 Dec 2017 23:20:28 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5C43F160C0B for ; Mon, 4 Dec 2017 00:20:28 +0100 (CET) Received: (qmail 71585 invoked by uid 500); 3 Dec 2017 23:20:27 -0000 Mailing-List: contact commits-help@royale.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@royale.apache.org Delivered-To: mailing list commits@royale.apache.org Received: (qmail 71576 invoked by uid 99); 3 Dec 2017 23:20:27 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 03 Dec 2017 23:20:27 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id 7351280FA3; Sun, 3 Dec 2017 23:20:26 +0000 (UTC) Date: Sun, 03 Dec 2017 23:20:26 +0000 To: "commits@royale.apache.org" Subject: [royale-asjs] branch feature/html-namespace updated: Fix to TextNode was lost MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <151234322619.14254.11860812412390463187@gitbox.apache.org> From: harbs@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/html-namespace X-Git-Reftype: branch X-Git-Oldrev: 36801a6ccade3cc3c263f635000718c8cadb110a X-Git-Newrev: 16b69f8d4552351a7520e368db1d215473cf2439 X-Git-Rev: 16b69f8d4552351a7520e368db1d215473cf2439 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated archived-at: Sun, 03 Dec 2017 23:20:29 -0000 This is an automated email from the ASF dual-hosted git repository. harbs pushed a commit to branch feature/html-namespace in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/feature/html-namespace by this push: new 16b69f8 Fix to TextNode was lost 16b69f8 is described below commit 16b69f8d4552351a7520e368db1d215473cf2439 Author: Harbs AuthorDate: Mon Dec 4 01:20:16 2017 +0200 Fix to TextNode was lost --- .../projects/HTML/src/main/royale/org/apache/royale/html/TextNode.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frameworks/projects/HTML/src/main/royale/org/apache/royale/html/TextNode.as b/frameworks/projects/HTML/src/main/royale/org/apache/royale/html/TextNode.as index 17ec59a..da1d79c 100644 --- a/frameworks/projects/HTML/src/main/royale/org/apache/royale/html/TextNode.as +++ b/frameworks/projects/HTML/src/main/royale/org/apache/royale/html/TextNode.as @@ -81,7 +81,7 @@ package org.apache.royale.html COMPILE::JS { if(element) - element.nodeValue = text; + element.nodeValue = value; } } -- To stop receiving notification emails like this one, please contact ['"commits@royale.apache.org" '].