You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@royale.apache.org by ca...@apache.org on 2018/03/23 23:30:34 UTC

[royale-asjs] branch feature/jewel-ui-set updated: remove wrong lines

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 <ca...@apache.org>
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.