mirror of
https://github.com/moparisthebest/mail
synced 2024-11-29 20:32:15 -05:00
focus on editor when clicking on body element
This commit is contained in:
parent
6f34ec0f44
commit
e316a89d24
@ -124,7 +124,7 @@ define(function(require) {
|
|||||||
iv = util.random(128);
|
iv = util.random(128);
|
||||||
|
|
||||||
$scope.updatePreview = function() {
|
$scope.updatePreview = function() {
|
||||||
var body = $scope.body;
|
var body = $scope.body.trim();
|
||||||
|
|
||||||
// Although this does encrypt live using AES, this is just for show. The plaintext is encrypted seperately before sending the email.
|
// Although this does encrypt live using AES, this is just for show. The plaintext is encrypted seperately before sending the email.
|
||||||
$scope.ciphertextPreview = (body) ? aes.encrypt(body, key, iv) : '';
|
$scope.ciphertextPreview = (body) ? aes.encrypt(body, key, iv) : '';
|
||||||
@ -236,6 +236,17 @@ define(function(require) {
|
|||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
|
ngModule.directive('focusChild', function() {
|
||||||
|
return {
|
||||||
|
//scope: true, // optionally create a child scope
|
||||||
|
link: function(scope, element) {
|
||||||
|
element[0].onclick = function() {
|
||||||
|
element[0].children[0].focus();
|
||||||
|
};
|
||||||
|
}
|
||||||
|
};
|
||||||
|
});
|
||||||
|
|
||||||
ngModule.directive('autoSize', function($parse) {
|
ngModule.directive('autoSize', function($parse) {
|
||||||
return {
|
return {
|
||||||
require: 'ngModel',
|
require: 'ngModel',
|
||||||
|
@ -65,6 +65,7 @@
|
|||||||
|
|
||||||
.body {
|
.body {
|
||||||
line-height: 1.5em;
|
line-height: 1.5em;
|
||||||
|
cursor: text;
|
||||||
|
|
||||||
@include respond-to(desktop) {
|
@include respond-to(desktop) {
|
||||||
height: 445px;
|
height: 445px;
|
||||||
|
@ -26,10 +26,10 @@
|
|||||||
</button>
|
</button>
|
||||||
</div><!--/.subject-box-->
|
</div><!--/.subject-box-->
|
||||||
|
|
||||||
<div class="body">
|
<div class="body" focus-child>
|
||||||
<p ng-model="body" contentEditable="true" ng-change="updatePreview()" tabindex="4" focus-me="state.writer.open && writerTitle === 'Reply'"></p>
|
<p ng-model="body" contentEditable="true" ng-change="updatePreview()" tabindex="4" focus-me="state.writer.open && writerTitle === 'Reply'"></p>
|
||||||
|
|
||||||
<div class="encrypt-preview" ng-class="{'invisible': !body}">
|
<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>
|
<br>
|
||||||
<p>{{signature}}</p>
|
<p>{{signature}}</p>
|
||||||
|
Loading…
Reference in New Issue
Block a user