JSFAttr constants for JSCookMenu component are wrong
----------------------------------------------------
Key: TOMAHAWK-1330
URL: https://issues.apache.org/jira/browse/TOMAHAWK-1330
Project: MyFaces Tomahawk
Issue Type: Bug
Affects Versions: 1.1.7
Reporter: Guillaume Serre
The 3 constants associated to the JSCookMenu component (and many others) have
wrong values in the JSFAttr interface:
Their values are the following:
{code}
// Alternate locations (instead of using AddResource)
String JAVASCRIPT_LOCATION = "org.apache.myfaces.JAVASCRIPT_LOCATION";
String IMAGE_LOCATION = "org.apache.myfaces.IMAGE_LOCATION";
String STYLE_LOCATION = "org.apache.myfaces.STYLE_LOCATION";
{code}
But they should be:
{code}
// Alternate locations (instead of using AddResource)
String JAVASCRIPT_LOCATION = "javascriptLocation";
String IMAGE_LOCATION = "imageLocation";
String STYLE_LOCATION = "styleLocation";
{code}
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.