Loading...

RE: need helpdesk.js file

RE: need helpdesk.js file

#4997
Anonymous
Anonymous
Participant

Hi Kim,

   Here you are the helpdesk,js file content.

Please create a file using the same name and place under scripts folder on your site.

If you have any questions pelase let me know.

Thanks,

If you think that I answered your question please mark it so.

function DisplaySeverity(severity)
{
var imgSrc = '';

if (severity == '(1) Work Halted')
{
  imgSrc = 'images/Stop.gif';
}
else if (severity == '(2) Work Slowed Down')
{
  imgSrc = 'images/YellowTriangle.gif';
}
else if (severity == '(3) Annoyance')
{
  imgSrc = 'images/Annoyance.gif';
}
else if (severity == '(4) Question')
{
  imgSrc = 'images/Question.gif';
}

return '<img alt="' + severity + '" src="' + imgSrc + '">';
}