mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7645: UI: Fix dictionary JSP include order
-Places dictionary JSP includes at top of script includes, to help solve a potential issue where the dictionary may not always be loaded before the UI initializes
This commit is contained in:
parent
ade305be20
commit
9717bbdc51
|
|
@ -1693,6 +1693,10 @@
|
|||
<script src="lib/jquery.md5.js" type="text/javascript" ></script>
|
||||
<script src="lib/require.js" type="text/javascript"></script>
|
||||
|
||||
<!-- localized messages -->
|
||||
<jsp:include page="dictionary.jsp" />
|
||||
<jsp:include page="dictionary2.jsp" />
|
||||
|
||||
<script src="lib/excanvas.js" type="text/javascript"></script>
|
||||
<script src="lib/flot/jquery.flot.js" type="text/javascript"></script>
|
||||
<script src="lib/flot/jquery.colorhelpers.js" type="text/javascript"></script>
|
||||
|
|
@ -1777,9 +1781,5 @@
|
|||
<script type="text/javascript" src="plugins/plugins.js?t=<%=now%>"></script>
|
||||
<script type="text/javascript" src="modules/modules.js?t=<%=now%>"></script>
|
||||
<script type="text/javascript" src="scripts/plugins.js?t=<%=now%>"></script>
|
||||
|
||||
<!-- localized messages -->
|
||||
<jsp:include page="dictionary.jsp" />
|
||||
<jsp:include page="dictionary2.jsp" />
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Reference in New Issue