...
Code Block | ||
---|---|---|
| ||
var issue = row["Issue"]; if(row["Resolved"]) issue = "<strike>"+row["Issue"]+"</strike>"; "<a href='"+vars["JIRA Base URL"]+"/browse/"+row["Issue"]+"' target='_top'>"+issue+"</a>" |
In the script above the issue key is stored into a Javascript variable. if the new column bind row["Resolved"] is true then the issue key is envolved with the <strike> HTML5 elememt.
Preview the results: when the issue is Done then is displayed with a strikethrough line: