Hi All,
All I want to do is include an external javascript file how hard can that be you ask? well its turning into a nightmare, i have a web resource from an example plugin ive found:
<web-resource key="requestedfields-resources" name="Request custom fields Web Resources">
<dependency>com.atlassian.auiplugin:ajs</dependency>
<resource type="download" name="requestedfields.css"
location="/ru/andreymarkelov/atlas/plugins/requestedfiedls/css/requestedfields.css"/>
<resource type="download" name="requestedfields.js"
location="/ru/andreymarkelov/atlas/plugins/requestedfiedls/js/requestedfields.js"/>
<resource type="download" name="images/" location="/ru/andreymarkelov/atlas/plugins/requestedfiedls/images/"/>
<context>requestedfields</context>
</web-resource>
and i want to include the java script file in a velocity template, so i can call a function:
function doSomething()
{
alert('hello world')
}
thats it, thats all i want to do, I've seen people saying use something like this:
$webResourceManager.requireResource("com.atlassian.auiplugin:requestedfields-resources")
but i dont know what im supposed to pass to requireResource or where I'm meant to put this in my velocity template, can someone please help before I lose my mind and potentially go postal.
Thanks :)
For future visitors see https://developer.atlassian.com/server/jira/platform/web-resource/
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.