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/09/06 16:07:05 UTC

[royale-asjs] branch develop updated: remove traces

This is an automated email from the ASF dual-hosted git repository.

carlosrovira pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/royale-asjs.git


The following commit(s) were added to refs/heads/develop by this push:
     new 310a9f5  remove traces
310a9f5 is described below

commit 310a9f50f79e9058a8bc06d8841b6eb70813994d
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Thu Sep 6 18:06:58 2018 +0200

    remove traces
---
 .../royale/JewelExample/src/main/royale/SliderPlayGround.mxml     | 8 ++++----
 .../royale/jewel/beads/controls/combobox/ComboBoxTextPrompt.as    | 4 +---
 2 files changed, 5 insertions(+), 7 deletions(-)

diff --git a/examples/royale/JewelExample/src/main/royale/SliderPlayGround.mxml b/examples/royale/JewelExample/src/main/royale/SliderPlayGround.mxml
index bc0ee8d..eb5bbd3 100644
--- a/examples/royale/JewelExample/src/main/royale/SliderPlayGround.mxml
+++ b/examples/royale/JewelExample/src/main/royale/SliderPlayGround.mxml
@@ -27,24 +27,24 @@ limitations under the License.
 		
 		private function clickHandler(event:MouseEvent):void
 		{
-			trace("clickHandler");
+			// trace("clickHandler");
 			slider_w.value = 400;
 			slider_h.value = 200;
 		}
 
         private function onInput(event:Event):void
         {
-			trace("onInput");
+			// trace("onInput");
         }
 
 		private function onChange(event:Event):void
         {
-			trace("onChange");
+			// trace("onChange");
 		}
 
 		private function onValueChange(event:Event):void
         {
-			trace("onValueChange"); // if target IE11 you must use this event handler
+			// trace("onValueChange"); // if target IE11 you must use this event handler
 			button.width = slider_w.value;
 			button.height = slider_h.value;
 			button.text = slider_w.value + "x" + slider_h.value;
diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/combobox/ComboBoxTextPrompt.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/combobox/ComboBoxTextPrompt.as
index 25623e8..2a85839 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/combobox/ComboBoxTextPrompt.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/beads/controls/combobox/ComboBoxTextPrompt.as
@@ -66,7 +66,6 @@ package org.apache.royale.jewel.beads.controls.combobox
 		override public function set strand(value:IStrand):void
 		{
 			_strand = value;
-			trace(_strand);
 
 			setTimeout(addPrompt,  300);
 		}	
@@ -74,8 +73,7 @@ package org.apache.royale.jewel.beads.controls.combobox
 		private function addPrompt():void
         {
 			var viewBead:IComboBoxView = _strand.getBeadByType(IComboBoxView) as IComboBoxView;
-			trace(viewBead);
-
+			
 			COMPILE::JS
 			{
 				var e:HTMLInputElement = viewBead.textinput.element as HTMLInputElement;