svn commit: r924542 - /ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r924542 - /ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl

lektran
Author: lektran
Date: Wed Mar 17 22:50:45 2010
New Revision: 924542

URL: http://svn.apache.org/viewvc?rev=924542&view=rev
Log:
Couple of xhtml fixes: an a tag's title attribute value was missing enclosing quotes and a script tag was missing the required type attribute

Modified:
    ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl

Modified: ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl?rev=924542&r1=924541&r2=924542&view=diff
==============================================================================
--- ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl (original)
+++ ofbiz/trunk/themes/tomahawk/includes/appbarClose.ftl Wed Mar 17 22:50:45 2010
@@ -63,7 +63,7 @@ under the License.
     </#if>
     <#if webSiteId?exists && requestAttributes._CURRENT_VIEW_?exists>
       <#include "component://common/webcommon/includes/helplink.ftl" />
-      <li><a class="help-link <#if pageAvail?has_content> alert</#if>" href="javascript:lookup_popup2('showHelp?helpTopic=${helpTopic}&amp;portalPageId=${parameters.portalPageId?if_exists}','help' ,500,500);" title=${uiLabelMap.CommonHelp}></a></li>
+      <li><a class="help-link <#if pageAvail?has_content> alert</#if>" href="javascript:lookup_popup2('showHelp?helpTopic=${helpTopic}&amp;portalPageId=${parameters.portalPageId?if_exists}','help' ,500,500);" title="${uiLabelMap.CommonHelp}"></a></li>
     </#if>
     <#if userLogin?exists>
       <li><a href="<@ofbizUrl>logout</@ofbizUrl>">${uiLabelMap.CommonLogout}</a></li>
@@ -89,7 +89,7 @@ under the License.
 <div class="clear">
 </div>
 
-<script>
+<script type="text/javascript">
   var mainmenu = new DropDownMenu($('main-navigation'));
   var appmenu = new DropDownMenu($('app-navigation'));
 </script>