You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by ah...@apache.org on 2017/05/01 03:48:23 UTC

[24/50] [abbrv] git commit: [flex-asjs] [refs/heads/develop] - switch TextArea width back to 300

switch TextArea width back to 300


Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/8256ea58
Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/8256ea58
Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/8256ea58

Branch: refs/heads/develop
Commit: 8256ea5884e5831fa522f297ca40ee7fe9359870
Parents: 925a08d
Author: Alex Harui <ah...@apache.org>
Authored: Mon Apr 24 10:47:51 2017 -0700
Committer: Alex Harui <ah...@apache.org>
Committed: Mon Apr 24 10:47:51 2017 -0700

----------------------------------------------------------------------
 .../flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/8256ea58/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml
----------------------------------------------------------------------
diff --git a/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml b/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml
index c8d4b81..84f6f26 100644
--- a/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml
+++ b/examples/flexjs/DataBindingExample/src/main/flex/MyInitialView.mxml
@@ -146,7 +146,7 @@ limitations under the License.
 	
 	<js:Label id="bindtest" text="{fieldText + ' expression binding'}" />
 	<js:Label width="300" text.showAll="110" includeIn="showAll" />
-	<js:TextArea id="ta" width="100%" height="100" height.showAll="110" 
+	<js:TextArea id="ta" width="300" height="100" height.showAll="110" 
 				 includeIn="showAll"
 				 text="{MyModel(applicationModel).allData}" />
 </js:View>