Fixed readme and made buttons a bit wider
Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/39b3f9b2 Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/39b3f9b2 Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/39b3f9b2 Branch: refs/heads/feature/strand-work Commit: 39b3f9b20a8a084426a889e9256b84523d614e77 Parents: 0cd271b Author: Harbs <[email protected]> Authored: Sun Jul 16 15:45:13 2017 +0300 Committer: Harbs <[email protected]> Committed: Sun Jul 16 15:45:13 2017 +0300 ---------------------------------------------------------------------- examples/flexjs/DebuggingExample/README.txt | 2 ++ .../src/main/flex/MyInitialView.mxml | 18 +++++++++--------- 2 files changed, 11 insertions(+), 9 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/39b3f9b2/examples/flexjs/DebuggingExample/README.txt ---------------------------------------------------------------------- diff --git a/examples/flexjs/DebuggingExample/README.txt b/examples/flexjs/DebuggingExample/README.txt index 628187f..7a7fd51 100644 --- a/examples/flexjs/DebuggingExample/README.txt +++ b/examples/flexjs/DebuggingExample/README.txt @@ -21,6 +21,8 @@ DESCRIPTION The DebuggingExample shows how to use the debugging package. +The debugging functions will only be called in the debug build and will do nothing in the release build. + This Flex application may be run as a Flash SWF or cross-compiled (using Falcon JX) into JavaScript and HTML and run without Flash. http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/39b3f9b2/examples/flexjs/DebuggingExample/src/main/flex/MyInitialView.mxml ---------------------------------------------------------------------- diff --git a/examples/flexjs/DebuggingExample/src/main/flex/MyInitialView.mxml b/examples/flexjs/DebuggingExample/src/main/flex/MyInitialView.mxml index 16841d9..266e750 100644 --- a/examples/flexjs/DebuggingExample/src/main/flex/MyInitialView.mxml +++ b/examples/flexjs/DebuggingExample/src/main/flex/MyInitialView.mxml @@ -91,13 +91,13 @@ limitations under the License. <js:TextArea id="ta" width="300" height="100" text="{taText}" /> - <js:TextButton width="120" text="assert() pass" click="assert1()"/> - <js:TextButton width="120" text="assert() fail" click="assert2()"/> - <js:TextButton width="120" text="assertType() pass" click="assertType1()"/> - <js:TextButton width="120" text="assertType() fail" click="assertType2()"/> - <js:TextButton width="120" text="check() pass" click="check1()"/> - <js:TextButton width="120" text="check() fail" click="check2()"/> - <js:TextButton width="120" text="notNull() pass" click="notNull1()"/> - <js:TextButton width="120" text="notNull() fail null" click="notNull2()"/> - <js:TextButton width="120" text="notNull() fail undefined" click="notNull3()"/> + <js:TextButton width="150" text="assert() pass" click="assert1()"/> + <js:TextButton width="150" text="assert() fail" click="assert2()"/> + <js:TextButton width="150" text="assertType() pass" click="assertType1()"/> + <js:TextButton width="150" text="assertType() fail" click="assertType2()"/> + <js:TextButton width="150" text="check() pass" click="check1()"/> + <js:TextButton width="150" text="check() fail" click="check2()"/> + <js:TextButton width="150" text="notNull() pass" click="notNull1()"/> + <js:TextButton width="150" text="notNull() fail null" click="notNull2()"/> + <js:TextButton width="150" text="notNull() fail undefined" click="notNull3()"/> </js:View>
