0 Replies Latest reply on Jun 18, 2009 7:06 AM by heiko.braun

    Blank page issues in console CR1

    heiko.braun

      Here's the actual fix for the blacnk page problem on IE and FF 3.x.
      The closing script tags have been missing:


      Bonanova:war hbraun$ svn diff -r4964:5056
      Index: src/main/resources/org/jboss/bpm/console/public/Application.html
      ===================================================================
      --- src/main/resources/org/jboss/bpm/console/public/Application.html (revision 4964)
      +++ src/main/resources/org/jboss/bpm/console/public/Application.html (revision 5056)
      @@ -3,14 +3,14 @@
       <title>GWT Console Application</title>
      
       <!-- BPM console configuration -->
      - <script type="text/javascript" src="console.config.js"/>
      + <script src="console.config.js" type="text/javascript"></script>
      
       <!-- -->
       <!-- This script loads your compiled module. -->
       <!-- If you add any GWT meta tags, they must -->
       <!-- be added before this line. -->
       <!-- -->
      - <script language='javascript' src='org.jboss.bpm.console.Application.nocache.js'/>
      + <script src="org.jboss.bpm.console.Application.nocache.js" type="text/javascript"></script>
      
       <link rel="stylesheet" href="console.css" type="text/css">
      
      


      It's been commited to trunk.