Skip to content
This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Commit 0bfaba3

Browse files
author
Felix Hammerl
committed
Merge pull request #352 from whiteout-io/dev/WO-944
[WO-03-011] Fix no Reliable Sender Indication is implemented (Medium)
2 parents f287c4c + e7cbf9e commit 0bfaba3

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"grunt": "~0.4.1",
4545
"grunt-angular-templates": "~0.5.7",
4646
"grunt-autoprefixer": "~0.7.2",
47-
"grunt-browserify": "^3.0.1",
47+
"grunt-browserify": "~3.7.0",
4848
"grunt-contrib-clean": "~0.5.0",
4949
"grunt-contrib-compress": "~0.5.2",
5050
"grunt-contrib-concat": "^0.5.0",
@@ -79,4 +79,4 @@
7979
"time-grunt": "^1.0.0",
8080
"wo-smtpclient": "~0.6.0"
8181
}
82-
}
82+
}

src/sass/blocks/views/_read.scss

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,9 @@
191191
.mail-addresses__stripped {
192192
display: inline;
193193
}
194+
.read__sender-address {
195+
display: none;
196+
}
194197
}
195198
}
196199
}

src/tpl/read.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ <h2 class="read__subject-md" wo-touch="close()">
7575
<label>From:</label>
7676
<span ng-repeat="u in state.mailList.selected.from">
7777
<span class="label" ng-class="{'label--invalid': u.secure === false, 'label--invalid-clickable': u.secure === false}" ng-mouseover="getKeyId(u.address)" wo-touch="invite(u)" wo-tooltip="#fingerprint-info">
78-
{{u.name || u.address}}
78+
{{u.name || u.address}} <span ng-show="u.name" ng-class="{'read__sender-address': !notStripped}">&#60; {{u.address}} &#62;</span>
7979
<svg ng-show="u.secure === false"><use xlink:href="#icon-add_contact" /></svg>
8080
</span>
8181

0 commit comments

Comments
 (0)