Repository: flex-asjs Updated Branches: refs/heads/develop c4eb090f0 -> c4436a4f1
Added effects in HTML package. Project: http://git-wip-us.apache.org/repos/asf/flex-asjs/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-asjs/commit/c4436a4f Tree: http://git-wip-us.apache.org/repos/asf/flex-asjs/tree/c4436a4f Diff: http://git-wip-us.apache.org/repos/asf/flex-asjs/diff/c4436a4f Branch: refs/heads/develop Commit: c4436a4f104c256d6590071b8f392aef5ed3f663 Parents: c4eb090 Author: yishayw <[email protected]> Authored: Wed Nov 16 10:29:35 2016 +0200 Committer: yishayw <[email protected]> Committed: Wed Nov 16 10:29:35 2016 +0200 ---------------------------------------------------------------------- .../FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml | 1 + frameworks/projects/HTML/src/main/config/compile-as-config.xml | 1 + .../flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as | 3 +-- 3 files changed, 3 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c4436a4f/frameworks/js/FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/js/FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml b/frameworks/js/FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml index 4a555f0..9a96d31 100644 --- a/frameworks/js/FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml +++ b/frameworks/js/FlexJS/projects/HTMLJS/src/main/config/compile-js-config.xml @@ -57,6 +57,7 @@ <path-element>../../../../../libs/CoreJS.swc</path-element> <path-element>../../../../../libs/GraphicsJS.swc</path-element> <path-element>../../../../../libs/CollectionsJS.swc</path-element> + <path-element>../../../../../libs/EffectsJS.swc</path-element> </library-path> <namespaces> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c4436a4f/frameworks/projects/HTML/src/main/config/compile-as-config.xml ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/config/compile-as-config.xml b/frameworks/projects/HTML/src/main/config/compile-as-config.xml index 7b1c242..a5bf243 100644 --- a/frameworks/projects/HTML/src/main/config/compile-as-config.xml +++ b/frameworks/projects/HTML/src/main/config/compile-as-config.xml @@ -27,6 +27,7 @@ <path-element>../../../../../libs/Core.swc</path-element> <path-element>../../../../../libs/Graphics.swc</path-element> <path-element>../../../../../libs/Collections.swc</path-element> + <path-element>../../../../../libs/Effects.swc</path-element> </external-library-path> <mxml> http://git-wip-us.apache.org/repos/asf/flex-asjs/blob/c4436a4f/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as ---------------------------------------------------------------------- diff --git a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as index 0d0702f..4e01074 100644 --- a/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as +++ b/frameworks/projects/HTML/src/main/flex/org/apache/flex/html/beads/EasyAccordionCollapseBead.as @@ -19,8 +19,6 @@ package org.apache.flex.html.beads { - import flash.events.IEventDispatcher; - import org.apache.flex.core.ILayoutChild; import org.apache.flex.core.IStrand; import org.apache.flex.core.UIBase; @@ -28,6 +26,7 @@ package org.apache.flex.html.beads import org.apache.flex.effects.Parallel; import org.apache.flex.effects.Resize; import org.apache.flex.events.Event; + import org.apache.flex.events.IEventDispatcher; import org.apache.flex.html.beads.layouts.IOneFlexibleChildLayout; import org.apache.flex.html.supportClasses.ICollapsible;
