Uploaded image for project: 'Felix'
  1. Felix
  2. FELIX-1020

Footer redered before content in bundle plugin

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • webconsole-1.2.8
    • webconsole-2.0.0
    • Web Console
    • None

    Description

      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

      Attachments

        1. Screenshot-LogService.png
          91 kB
          Thomas Diesler

        Activity

          People

            cziegeler Carsten Ziegeler
            tdiesler Thomas Diesler
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: