You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by se...@apache.org on 2018/02/02 18:13:01 UTC

[incubator-ponymail] branch master updated: Use correct dependency order to fix OAuth login problem; this fixes #431

This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-ponymail.git


The following commit(s) were added to refs/heads/master by this push:
     new a8ea8a0  Use correct dependency order to fix OAuth login problem; this fixes #431
a8ea8a0 is described below

commit a8ea8a044996ba0aea08fe59156edb79cd6f9db8
Author: Sebb <se...@apache.org>
AuthorDate: Fri Feb 2 18:12:54 2018 +0000

    Use correct dependency order to fix OAuth login problem; this fixes #431
---
 CHANGELOG.md        | 1 +
 site/js/ponymail.js | 4 +++-
 site/oauth.html     | 2 +-
 3 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 4cc7c92..25d7622 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,5 @@
 ## CHANGES in 0.10:
+- Bug: Use correct dependency order to fix OAuth login problem (#431)
 - Bug: HTTPS connections may fail with ES 6.x libraries (#425)
 - Enh: Support ES 6.x library (#424)
 - Enh: Optionally dump JSON documents to disk if push to ES fails (#423).
diff --git a/site/js/ponymail.js b/site/js/ponymail.js
index 84fa8eb..8f9cc00 100644
--- a/site/js/ponymail.js
+++ b/site/js/ponymail.js
@@ -1519,7 +1519,9 @@ function displayEmail(json, id, level) {
             
             thread.innerHTML += "<br/>"
             //thread.style.border = "1px dotted #666"
-            thread.style.padding = "5px"
+            thread.style.padding = "0px"
+            thread.style.leftpadding = "10px"
+            thread.style.rightpadding = "0px"
             thread.style.fontFamily = "Hack"
             
             var fields = ['From', 'To', 'CC', 'Subject', 'Date']
diff --git a/site/oauth.html b/site/oauth.html
index fa2e68f..e20e681 100644
--- a/site/oauth.html
+++ b/site/oauth.html
@@ -60,8 +60,8 @@ the License. -->
   <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
     <!-- Include all compiled plugins (below), or include individual files as needed -->
     <script src="js/bootstrap.min.js"></script>
+    <script src="js/config.js"></script>
     <script src="js/ponymail.js"></script>
     <script src="js/oauth.js"></script>
-    <script src="js/config.js"></script>
   </body>
 </html>
\ No newline at end of file

-- 
To stop receiving notification emails like this one, please contact
sebb@apache.org.