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.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4238442#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...