I needed a way to add some inline CSJS to an existing application which affects any XPage, that’s why I did this them with a theme.
Et voilà:
<theme extends="webstandard" >
<resources mode="concat">
<script>
<contents>alert('THEME JS!')</contents>
<clientSide>true</clientSide>
</script>
</resources>
</theme>
The javascript code is added and executed as expected:
Genau das, was ich gesucht habe. Bin schon mehrfach über hilfreiche Kommentare von dir (bspw. auf Stack Exchange) gestoßen und wollte mich mal bedanken. =)