I have a soy template located in /resources/templates/template.soy
. I’m trying to import a javascript that is located in /resources/js/chartsMaker.js
and I tried the following and it didn’t work:
{namespace plugin.contributions}
/**
* Contribution tab
*/
{template .contributionsTab}
<html>
<head>
<script src="chartsMaker.js"></script>
</head>
<body>
<h1>Hello World</h1>
</body>
</html>
{/template}