1
0
mirror of https://github.com/moparisthebest/mail synced 2024-11-23 09:22:23 -05:00

remove signature under encrypted preview

This commit is contained in:
Tankred Hase 2013-12-05 16:56:42 +01:00
parent edb424edd0
commit 1988ba3f81
2 changed files with 0 additions and 4 deletions

View File

@ -5,7 +5,6 @@ define(function(require) {
appController = require('js/app-controller'), appController = require('js/app-controller'),
aes = require('cryptoLib/aes-cbc'), aes = require('cryptoLib/aes-cbc'),
util = require('cryptoLib/util'), util = require('cryptoLib/util'),
str = require('js/app-config').string,
emailDao; emailDao;
// //
@ -13,7 +12,6 @@ define(function(require) {
// //
var WriteCtrl = function($scope, $filter) { var WriteCtrl = function($scope, $filter) {
$scope.signature = str.signature;
emailDao = appController._emailDao; emailDao = appController._emailDao;
// //

View File

@ -31,8 +31,6 @@
<div class="encrypt-preview" ng-class="{'invisible': !ciphertextPreview}"> <div class="encrypt-preview" ng-class="{'invisible': !ciphertextPreview}">
<p>-----BEGIN ENCRYPTED PREVIEW-----<br>{{ciphertextPreview}}<br>-----END ENCRYPTED PREVIEW-----</p> <p>-----BEGIN ENCRYPTED PREVIEW-----<br>{{ciphertextPreview}}<br>-----END ENCRYPTED PREVIEW-----</p>
<br>
<p>{{signature}}</p>
</div><!--/.encrypt-preview--> </div><!--/.encrypt-preview-->
</div><!--/.body--> </div><!--/.body-->