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 2020/08/14 19:47:08 UTC

[royale-asjs] branch develop updated: jewel-textinput: remove comment

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 5b638f4  jewel-textinput: remove comment
5b638f4 is described below

commit 5b638f4c5e941ec8635a89f33e5ab995ee039f91
Author: Carlos Rovira <ca...@apache.org>
AuthorDate: Fri Aug 14 21:46:56 2020 +0200

    jewel-textinput: remove comment
---
 .../projects/Jewel/src/main/royale/org/apache/royale/jewel/TextInput.as  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextInput.as b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextInput.as
index 7853f20..2a2c59a 100644
--- a/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextInput.as
+++ b/frameworks/projects/Jewel/src/main/royale/org/apache/royale/jewel/TextInput.as
@@ -66,7 +66,6 @@ package org.apache.royale.jewel
             input.setAttribute('spellcheck', 'false');
             
             //attach input handler to dispatch royale change event when user write in textinput
-            //goog.events.listen(element, 'change', killChangeHandler);
             input.addEventListener("input", textChangeHandler)
             input.addEventListener("keypress", enterEventHandler, true);