Author: tmjee
Date: Fri Jul 28 23:25:21 2006
New Revision: 426756

URL: http://svn.apache.org/viewvc?rev=426756&view=rev
Log:
WW-1396
 - typo in textarea component in ajax theme and also showcase example
   "linkGroup;|;textGroup;|;justifyGroup;|;listGroup;indentGroup;|;colorGroup"  
   should instead be 
   "linkGroup;|;textGroup;|;justifyGroup;|;listGroup;indentGroup;|;colorGroup" 
 


Modified:
    struts/struts2/trunk/apps/showcase/src/main/webapp/ajax/widgets/index.jsp
    struts/struts2/trunk/core/src/main/resources/template/ajax/textarea.ftl

Modified: 
struts/struts2/trunk/apps/showcase/src/main/webapp/ajax/widgets/index.jsp
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/apps/showcase/src/main/webapp/ajax/widgets/index.jsp?rev=426756&r1=426755&r2=426756&view=diff
==============================================================================
--- struts/struts2/trunk/apps/showcase/src/main/webapp/ajax/widgets/index.jsp 
(original)
+++ struts/struts2/trunk/apps/showcase/src/main/webapp/ajax/widgets/index.jsp 
Fri Jul 28 23:25:21 2006
@@ -24,7 +24,7 @@
 Configured Editor configuration:<br/>
 <s:form id="form2" action="AjaxRemoteForm" method="post">
     <s:textarea id="editor2" name="data" theme="ajax" cols="50" rows="10" 
value="Test Data 2">
-        <s:param 
name="editorControls">textGroup;|;justifyGroup;|;listGroup;indentGroup</s:param>
+        <s:param 
name="editorControls">textGroup;|;justifyGroup;|;listGroup;|;indentGroup</s:param>
     </s:textarea>
     <s:submit value="Submit"/>
 </s:form>

Modified: 
struts/struts2/trunk/core/src/main/resources/template/ajax/textarea.ftl
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/resources/template/ajax/textarea.ftl?rev=426756&r1=426755&r2=426756&view=diff
==============================================================================
--- struts/struts2/trunk/core/src/main/resources/template/ajax/textarea.ftl 
(original)
+++ struts/struts2/trunk/core/src/main/resources/template/ajax/textarea.ftl Fri 
Jul 28 23:25:21 2006
@@ -5,7 +5,7 @@
 <#if parameters.editorControls?exists>
  items="${parameters.editorControls?html}"<#rt/>
 <#else>
- 
items="linkGroup;|;textGroup;|;justifyGroup;|;listGroup;indentGroup;|;colorGroup"
+ 
items="linkGroup;|;textGroup;|;justifyGroup;|;listGroup;|;indentGroup;|;colorGroup"
 </#if>
  name="${parameters.name?default("")?html}"<#rt/>
  cols="${parameters.cols?default("")?html}"<#rt/>


Reply via email to