Add to changelog

stable
Xavier Julián 2016-06-13 10:01:54 +02:00 committed by Juanfran
parent 45d618ca13
commit c175e4d1da
2 changed files with 3 additions and 2 deletions

View File

@ -12,6 +12,7 @@
- Display the current user (me) at first in assignment lightbox (thanks to [@mikaoelitiana](https://github.com/mikaoelitiana)) - Display the current user (me) at first in assignment lightbox (thanks to [@mikaoelitiana](https://github.com/mikaoelitiana))
- Add a new permissions to allow add comments instead of use the existent modify permission for this purpose. - Add a new permissions to allow add comments instead of use the existent modify permission for this purpose.
- Ability to edit comments, view edition history and redesign comments module UI - Ability to edit comments, view edition history and redesign comments module UI
- Upvote and downvote issues from the issues list.
### Misc ### Misc
- Lots of small and not so small bugfixes. - Lots of small and not so small bugfixes.

View File

@ -16,7 +16,7 @@ section.issues-table.basic-table(ng-class="{empty: !issues.length}")
div.level-field(tg-listitem-type="issue") div.level-field(tg-listitem-type="issue")
div.level-field(tg-listitem-severity="issue") div.level-field(tg-listitem-severity="issue")
div.level-field(tg-listitem-priority="issue") div.level-field(tg-listitem-priority="issue")
div.votes( div.votes.ng-animate-disabled(
ng-class="{'inactive': !issue.total_voters}" ng-class="{'inactive': !issue.total_voters}"
ng-if="!issue.is_voter" ng-if="!issue.is_voter"
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}" title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"
@ -25,7 +25,7 @@ section.issues-table.basic-table(ng-class="{empty: !issues.length}")
) )
tg-svg(svg-icon="icon-upvote") tg-svg(svg-icon="icon-upvote")
span {{ issue.total_voters }} span {{ issue.total_voters }}
div.votes( div.votes.ng-animate-disabled(
ng-class="{'is-voted': issue.is_voter}" ng-class="{'is-voted': issue.is_voter}"
ng-if="issue.is_voter" ng-if="issue.is_voter"
title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}" title="{{ 'COMMON.VOTE_BUTTON.COUNTER_TITLE'|translate:{total:issue.total_voters||0}:'messageformat' }}"