From commits-return-3218-archive-asf-public=cust-asf.ponee.io@royale.apache.org Sat Mar 24 00:30:36 2018 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by mx-eu-01.ponee.io (Postfix) with SMTP id 42C2618064D for ; Sat, 24 Mar 2018 00:30:36 +0100 (CET) Received: (qmail 28889 invoked by uid 500); 23 Mar 2018 23:30:35 -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 28880 invoked by uid 99); 23 Mar 2018 23:30:35 -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; Fri, 23 Mar 2018 23:30:35 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id CCCF481BF7; Fri, 23 Mar 2018 23:30:34 +0000 (UTC) Date: Fri, 23 Mar 2018 23:30:34 +0000 To: "commits@royale.apache.org" Subject: [royale-asjs] branch feature/jewel-ui-set updated: remove wrong lines MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Message-ID: <152184783478.1214.10762619473658131145@gitbox.apache.org> From: carlosrovira@apache.org X-Git-Host: gitbox.apache.org X-Git-Repo: royale-asjs X-Git-Refname: refs/heads/feature/jewel-ui-set X-Git-Reftype: branch X-Git-Oldrev: c02877bce2e8f59c2b4652599090589171a142a6 X-Git-Newrev: 4f2bd777751da3df2f567247a1330f378575d564 X-Git-Rev: 4f2bd777751da3df2f567247a1330f378575d564 X-Git-NotificationType: ref_changed_plus_diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated This is an automated email from the ASF dual-hosted git repository. carlosrovira pushed a commit to branch feature/jewel-ui-set in repository https://gitbox.apache.org/repos/asf/royale-asjs.git The following commit(s) were added to refs/heads/feature/jewel-ui-set by this push: new 4f2bd77 remove wrong lines 4f2bd77 is described below commit 4f2bd777751da3df2f567247a1330f378575d564 Author: Carlos Rovira AuthorDate: Sat Mar 24 00:30:30 2018 +0100 remove wrong lines --- .../projects/Jewel/src/main/royale/org/apache/royale/jewel/Slider.as | 1 - .../projects/Jewel/src/main/royale/org/apache/royale/jewel/TextField.as | 1 - 2 files changed, 2 deletions(-) diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Slider.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Slider.as index 817efe8..0cb0101 100644 --- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Slider.as +++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/Slider.as @@ -181,7 +181,6 @@ package org.apache.royale.jewel override protected function createElement():WrappedHTMLElement { var div:HTMLDivElement = document.createElement('div') as HTMLDivElement; - div.className = typeNames; var input:HTMLInputElement = addElementToWrapper(this,'input') as HTMLInputElement; input.setAttribute('type', 'range'); diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextField.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextField.as index 0a49aeb..859bf62 100644 --- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextField.as +++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextField.as @@ -64,7 +64,6 @@ package org.apache.royale.jewel override protected function createElement():WrappedHTMLElement { var div:HTMLDivElement = document.createElement('div') as HTMLDivElement; - div.className = typeNames; input = addElementToWrapper(this,'input') as HTMLInputElement; input.setAttribute('type', 'text'); -- To stop receiving notification emails like this one, please contact carlosrovira@apache.org.