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 B9663200C3C for ; Mon, 3 Apr 2017 22:03:52 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id B7E8E160B8F; Mon, 3 Apr 2017 20:03:52 +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 09583160B8D for ; Mon, 3 Apr 2017 22:03:51 +0200 (CEST) Received: (qmail 82082 invoked by uid 500); 3 Apr 2017 20:03:51 -0000 Mailing-List: contact commits-help@flex.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@flex.apache.org Delivered-To: mailing list commits@flex.apache.org Received: (qmail 82074 invoked by uid 99); 3 Apr 2017 20:03:51 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 03 Apr 2017 20:03:51 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2386EDFC8E; Mon, 3 Apr 2017 20:03:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: harbs@apache.org To: commits@flex.apache.org Message-Id: <88be5bd25bfb4a39bc54472a4d2dd986@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: =?utf-8?q?flex-asjs_git_commit=3A_text_input_should_be_of_type_?= =?utf-8?b?4oCcdGV4dOKAnQ==?= Date: Mon, 3 Apr 2017 20:03:51 +0000 (UTC) archived-at: Mon, 03 Apr 2017 20:03:52 -0000 Repository: flex-asjs Updated Branches: refs/heads/develop 04ad0ed75 -> bacc59b71 text input should be of type “text” Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/bacc59b7 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/bacc59b7 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/bacc59b7 Branch: refs/heads/develop Commit: bacc59b71e5b2b5f40ed550dccd2807096f521f0 Parents: 04ad0ed Author: Harbs Authored: Mon Apr 3 16:03:48 2017 -0400 Committer: Harbs Committed: Mon Apr 3 16:03:48 2017 -0400 ---------------------------------------------------------------------- .../projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/bacc59b7/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as index fab027e..0a63c95 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/TextInput.as @@ -169,7 +169,7 @@ package org.apache.flex.html override protected function createElement():WrappedHTMLElement { element = document.createElement('input') as WrappedHTMLElement; - element.setAttribute('type', 'input'); + element.setAttribute('type', 'text'); element.className = 'TextInput'; typeNames = 'TextInput';