[ 
https://issues.apache.org/jira/browse/FELIX-1020?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12733334#action_12733334
 ] 

Carsten Ziegeler commented on FELIX-1020:
-----------------------------------------

I just fixed one potential problem, the main div has never been closed.
But I'm not sure that this is your problem. I'm wondering what the PluginHelper 
class which you're refering to in your example is doing? Where does it come 
from?

> Footer redered before content in bundle plugin
> ----------------------------------------------
>
>                 Key: FELIX-1020
>                 URL: https://issues.apache.org/jira/browse/FELIX-1020
>             Project: Felix
>          Issue Type: Bug
>          Components: Web Console
>    Affects Versions: webconsole-1.2.8
>            Reporter: Thomas Diesler
>            Assignee: Carsten Ziegeler
>         Attachments: Screenshot-LogService.png
>
>
> The BundlesServlet incorrectly renders the content like this
>         pw.println( "<div id='plugin_content'/>");
>         Util.startScript( pw );
>         pw.print( "renderBundles(");
>         writeJSON(pw, reqInfo.bundle);
>         pw.println(");" );
>         Util.endScript( pw );
> It should however be 
>         pw.println( "<div id='plugin_content'>");
>         Util.startScript( pw );
>         pw.print( "renderBundles(");
>         writeJSON(pw, reqInfo.bundle);
>         pw.println(");" );
>         Util.endScript( pw );
>         pw.println( "</div");
> The <script> tag should be enclosed in the <div>
> The effect of the bug is that the footer appears before the content 

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply via email to