2013-10-21 09:02:54 -04:00
|
|
|
<div class="lightbox-body" ng-controller="WriteCtrl">
|
2013-10-18 20:58:53 -04:00
|
|
|
<header>
|
|
|
|
<h2>{{writerTitle}}</h2>
|
2013-11-08 15:55:08 -05:00
|
|
|
<button class="close" ng-click="state.writer.close()" data-action="lightbox-close"></button>
|
2013-10-18 20:58:53 -04:00
|
|
|
</header>
|
|
|
|
<div class="content">
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-10-18 20:58:53 -04:00
|
|
|
<div class="view-write">
|
|
|
|
<div class="headers">
|
2014-01-19 10:18:32 -05:00
|
|
|
<p field="to">
|
2013-10-18 20:58:53 -04:00
|
|
|
<span>To:</span>
|
2014-01-10 15:35:34 -05:00
|
|
|
<span ng-repeat="recipient in to track by $index">
|
2014-01-19 10:58:51 -05:00
|
|
|
<input id="to{{$index}}" value="{{recipient.address}}" ng-model="recipient.address" ng-trim="false" ng-class="{'label': recipient.secure === true, 'label label-primary': recipient.secure === false && recipient.valid !== true}" auto-size="recipient.address" spellcheck="false" ng-change="onAddressUpdate(to, $index)" address-input="to" tabindex="1" ng-mouseover="getFingerprint(recipient)" popover="#fingerprint-writer" focus-me="state.writer.open && writerTitle !== 'Reply'">
|
2014-01-10 15:35:34 -05:00
|
|
|
</span>
|
2013-10-18 20:58:53 -04:00
|
|
|
</p>
|
2014-01-19 10:18:32 -05:00
|
|
|
<p field="cc">
|
2013-10-18 20:58:53 -04:00
|
|
|
<span>Cc:</span>
|
2014-01-13 10:42:10 -05:00
|
|
|
<span ng-repeat="recipient in cc track by $index">
|
2014-01-19 10:58:51 -05:00
|
|
|
<input id="cc{{$index}}" value="{{recipient.address}}" ng-model="recipient.address" ng-trim="false" ng-class="{'label': recipient.secure === true, 'label label-primary': recipient.secure === false && recipient.valid !== true}" auto-size="recipient.address" spellcheck="false" ng-change="onAddressUpdate(cc, $index)" address-input="cc" tabindex="1" ng-mouseover="getFingerprint(recipient)" popover="#fingerprint-writer">
|
2014-01-13 10:42:10 -05:00
|
|
|
</span>
|
2014-01-10 15:35:34 -05:00
|
|
|
</p>
|
2013-10-18 20:58:53 -04:00
|
|
|
</div><!--/.address-headers-->
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-10-18 20:58:53 -04:00
|
|
|
<div class="subject-box">
|
|
|
|
<div class="subject-line">
|
2014-01-13 10:42:10 -05:00
|
|
|
<input ng-model="subject" class="subject" spellcheck="true" tabindex="2" placeholder="Subject" ng-change="updatePreview()">
|
2013-10-18 20:58:53 -04:00
|
|
|
</div>
|
|
|
|
</div><!--/.subject-box-->
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2014-02-04 15:04:48 -05:00
|
|
|
<div class="attachments-box">
|
2014-02-05 18:41:08 -05:00
|
|
|
<span ng-repeat="attachment in attachments" class="attachment">
|
|
|
|
<span data-icon=""></span>
|
|
|
|
{{attachment.fileName}}
|
|
|
|
<span class="close" data-icon="" ng-click="remove(attachment)"></span>
|
|
|
|
</span><!--/.attachment-->
|
|
|
|
<input id="attachment-input" type="file" multiple attachment-input>
|
|
|
|
<button class="btn-attachment" attachment-btn>
|
|
|
|
<div data-icon=""></div>
|
|
|
|
</button>
|
2014-02-04 15:04:48 -05:00
|
|
|
</div><!--/.attachments-box-->
|
|
|
|
|
2013-11-27 05:57:15 -05:00
|
|
|
<div class="body" focus-child>
|
2014-01-13 10:42:10 -05:00
|
|
|
<p ng-model="body" contentEditable="true" spellcheck="false" ng-change="updatePreview()" tabindex="3" focus-me="state.writer.open && writerTitle === 'Reply'"></p>
|
2013-09-12 07:36:40 -04:00
|
|
|
|
2013-11-27 05:57:15 -05:00
|
|
|
<div class="encrypt-preview" ng-class="{'invisible': !ciphertextPreview}">
|
2013-10-18 20:58:53 -04:00
|
|
|
<p>-----BEGIN ENCRYPTED PREVIEW-----<br>{{ciphertextPreview}}<br>-----END ENCRYPTED PREVIEW-----</p>
|
|
|
|
</div><!--/.encrypt-preview-->
|
|
|
|
</div><!--/.body-->
|
2013-09-12 11:22:17 -04:00
|
|
|
|
2013-10-18 20:58:53 -04:00
|
|
|
<div class="send-control">
|
2014-01-13 17:54:53 -05:00
|
|
|
<button ng-click="sendToOutbox()" class="btn" data-icon="{{(sendBtnSecure === false) ? '' : (sendBtnSecure === true) ? '' : ''}}" ng-disabled="!okToSend" tabindex="4">{{sendBtnText || 'Send'}}</button>
|
2013-10-18 20:58:53 -04:00
|
|
|
</div>
|
|
|
|
</div><!--/.write-view-->
|
|
|
|
|
|
|
|
</div><!--/.content-->
|
2014-01-19 10:58:51 -05:00
|
|
|
|
|
|
|
<!-- popovers -->
|
|
|
|
<div id="fingerprint-writer" class="popover right" ng-controller="PopoverCtrl">
|
|
|
|
<div class="arrow"></div>
|
|
|
|
<div class="popover-title"><b>PGP Fingerprint</b></div>
|
|
|
|
<div class="popover-content">{{fingerprint}}</div>
|
|
|
|
</div><!--/.popover-->
|
2013-10-18 20:58:53 -04:00
|
|
|
</div><!--/.lightbox-body-->
|