From ab2089fed4e793ad93d4bd177b37edff41e9ad02 Mon Sep 17 00:00:00 2001
From: kurund <kurund@civicrm.org>
Date: Thu, 14 Nov 2013 00:10:15 +0530
Subject: [PATCH] manually applying PR for CRM-13741

----------------------------------------
* CRM-13741: Strike through names of survey participants that have already been interviewed
  http://issues.civicrm.org/jira/browse/CRM-13741
---
 css/civicrm.css                                | 3 +++
 templates/CRM/Campaign/Form/Task/Interview.tpl | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/css/civicrm.css b/css/civicrm.css
index e20282fb89..8615c68ddc 100644
--- a/css/civicrm.css
+++ b/css/civicrm.css
@@ -4032,3 +4032,6 @@ span.crm-status-icon {
   color: #fff;
 }
 
+.crm-container .survey-completed {
+  text-decoration: line-through;
+}
diff --git a/templates/CRM/Campaign/Form/Task/Interview.tpl b/templates/CRM/Campaign/Form/Task/Interview.tpl
index b980e85091..b096922cab 100644
--- a/templates/CRM/Campaign/Form/Task/Interview.tpl
+++ b/templates/CRM/Campaign/Form/Task/Interview.tpl
@@ -322,7 +322,7 @@ var surveyActivityIds = {/literal}{$surveyActivityIds}{literal};
   //post data to create interview.
   cj.post(dataUrl, data, function(interview) {
     if ( interview.status == 'success' ) {
-      cj("#row_"+voterId+' td.name').attr('class', 'name disabled' );
+      cj("#row_"+voterId+' td.name').attr('class', 'name survey-completed' );
       cj('#restmsg_vote_' + voterId).fadeIn("slow").fadeOut("slow");
       cj('#interview_voter_button_' + voterId).html(updateVote);
       cj('#release_voter_button_' + voterId).hide( );
-- 
GitLab