Re: [FlexJS] Question about Events/possible bugs

2017-07-11 Thread Greg Dove
Thanks for the clarification, and for your fixes Harbs, I will make the other changes to add the import to cover js build scope for ApplicationBase and the two layout beads today. On Tue, Jul 11, 2017 at 4:40 AM, Josh Tynjala wrote: > That sounds reasonable. > > - Josh > > On Mon, Jul 10, 201

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Josh Tynjala
That sounds reasonable. - Josh On Mon, Jul 10, 2017 at 9:32 AM, Alex Harui wrote: > Well, the goal is to not have the framework code use the native Event. > Maybe we should add a warning that we can turn on for our code but is off > by default. > > -Alex > > On 7/10/17, 8:52 AM, "Josh Tynjala"

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Alex Harui
Well, the goal is to not have the framework code use the native Event. Maybe we should add a warning that we can turn on for our code but is off by default. -Alex On 7/10/17, 8:52 AM, "Josh Tynjala" wrote: >This behavior is because the native HTML classes aren't in a package. The >compiler trea

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Josh Tynjala
This behavior is because the native HTML classes aren't in a package. The compiler treats everything that's not in a package the same as classes like Number, Boolean, and String, which you don't need to import. It seems potentially tricky to change this behavior, unless you have a whitelist. You w

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Alex Harui
Yes, good catch. I'm wondering if the compiler should not auto-import native HTML classes. -Alex On 7/10/17, 1:16 AM, "Harbs" wrote: >Good catch. > >Without looking at them, I’d guess that they are bugs. Clipboard was my >error and I just committed a fix for that. > >Thanks, >Harbs > >> On Jul

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread piotrz
Understand! :) - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Question-about-Events-possible-bugs-tp63023p63031.html Sent from the Apache Flex Development mailing list archive at Nabble.com.

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Harbs
It could, but there’s no reason to. The Clipboard class is just a proxy to the native Flash Clipboard class on the SWF side. > On Jul 10, 2017, at 11:02 AM, piotrz wrote: > > Harbs, > > I think this import could be outside COMPILE::JS. > > Piotr > > > > - > Apache Flex PMC > piotrzarzy

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Harbs
GraphicContainer was another one I was involved in, so I know that’s an omission as well. (committed) > On Jul 10, 2017, at 11:16 AM, Harbs wrote: > > Good catch. > > Without looking at them, I’d guess that they are bugs. Clipboard was my error > and I just committed a fix for that. > > Than

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread piotrz
Harbs, I think this import could be outside COMPILE::JS. Piotr - Apache Flex PMC piotrzarzyck...@gmail.com -- View this message in context: http://apache-flex-development.247.n4.nabble.com/FlexJS-Question-about-Events-possible-bugs-tp63023p63025.html Sent from the Apache Flex Developm

Re: [FlexJS] Question about Events/possible bugs

2017-07-10 Thread Harbs
Good catch. Without looking at them, I’d guess that they are bugs. Clipboard was my error and I just committed a fix for that. Thanks, Harbs > On Jul 10, 2017, at 11:06 AM, Greg Dove wrote: > > I noticed a problem with VerticalFlexLayout in IE11 (and presumably older > IE browsers). > > The