Skip to content

Commit

Permalink
Remove log from valueChanged, Android 2 has no RichText
Browse files Browse the repository at this point in the history
  • Loading branch information
dfreedm committed Mar 16, 2012
1 parent 0c9c8f8 commit 2af09c9
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion source/ui/RichText.js
Expand Up @@ -3,6 +3,8 @@
Use the value property to get or set the displayed text.
RichText is not supported on Android < 3.
Selection operations, and [insertAtCursor](#enyo.RichText::insertAtCursor) use the HTML Editing APIs
[HTML Editing APIs # Selection Reference](https://dvcs.w3.org/hg/editing/raw-file/tip/editing.html#selections)
Expand Down Expand Up @@ -49,7 +51,6 @@ enyo.kind({
},
valueChanged: function() {
if (this.hasFocus()) {
this.log("focused!");
this.selectAll();
this.insertAtCursor(this.value);
} else {
Expand Down

0 comments on commit 2af09c9

Please sign in to comment.