Skip to content

Commit

Permalink
added relative path to javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
tillgrallert committed Aug 3, 2017
1 parent 90f82a3 commit ea06f57
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion xslt-boilerplate/teibp_main.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@
<xsl:copy-of select="$htmlFooter"/>
</div>
<!-- <script type="text/javascript" src="{$p_js-slideout}"></script> -->
<script src="../js/script.js"></script>
<!-- <script src="../js/script.js"></script> -->
<script src="{$p_js}" type="text/javascript"/>
</body>
</html>
</xsl:template>
Expand Down
1 change: 1 addition & 0 deletions xslt-boilerplate/teibp_parameters.xsl
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@
<!--<xsl:param name="jqueryBlockUIJS" select="concat($filePrefix, '/js/jquery/plugins/jquery.blockUI.js')"/>
<xsl:param name="teibpJS" select="concat($filePrefix, '/js/teibp.js')"/>-->
<xsl:param name="p_js-slideout" select="concat($filePrefix,'/js/nav-slideout.js')"/>
<xsl:param name="p_js" select="concat($filePrefix,'/js/script.js')"/>
<xsl:param name="theme.default" select="concat($filePrefix, '/css/teibp.css')"/>
<xsl:param name="theme.sleepytime" select="concat($filePrefix, '/css/sleepy.css')"/>
<xsl:param name="theme.terminal" select="concat($filePrefix, '/css/terminal.css')"/>
Expand Down

0 comments on commit ea06f57

Please sign in to comment.