liquid_feedback_frontend
diff app/main/issue/_list.lua @ 289:6f79a181a921
Changed colors for interest/support
| author | bsw |
|---|---|
| date | Sat Feb 25 12:43:10 2012 +0100 (2012-02-25) |
| parents | c587d8762e62 |
| children | 1a55347e83bf |
line diff
1.1 --- a/app/main/issue/_list.lua Sat Feb 25 12:42:42 2012 +0100 1.2 +++ b/app/main/issue/_list.lua Sat Feb 25 12:43:10 2012 +0100 1.3 @@ -35,8 +35,10 @@ 1.4 for i, issue in ipairs(issues) do 1.5 1.6 local class = "issue" 1.7 - if issue.is_interested or issue.is_interested_by_delegation_to_member_id then 1.8 + if issue.is_interested then 1.9 class = class .. " interested" 1.10 + elseif issue.is_interested_by_delegation_to_member_id then 1.11 + class = class .. " interested_by_delegation" 1.12 end 1.13 ui.container{ attr = { class = class }, content = function() 1.14