Pratyoosh Sharma created FLEX-33707:
---------------------------------------
Summary: Alert.js titlebar is undefined error in createElement
Key: FLEX-33707
URL: https://issues.apache.org/jira/browse/FLEX-33707
Project: Apache Flex
Issue Type: Bug
Components: FlexJS
Affects Versions: Apache Flex 4.9.0
Environment: Chrome 29, Win 7 x64
Reporter: Pratyoosh Sharma
Priority: Minor
Flex Alert component has a minor problem in the createElement method where it does not explicitly
mentions this on the addElement method call
E.g.
this.titleBar = new org.apache.flex.html.staticControls.TitleBar();
this.addElement(titleBar);
Instead of
this.titleBar = new org.apache.flex.html.staticControls.TitleBar();
this.addElement(this.titleBar);
--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira
|