You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ponymail.apache.org by hu...@apache.org on 2016/08/18 11:51:17 UTC

incubator-ponymail git commit: leave this popup open for 60 seconds, not 5.

Repository: incubator-ponymail
Updated Branches:
  refs/heads/master d82c6c114 -> e8e5b9f2f


leave this popup open for 60 seconds, not 5.


Project: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/commit/e8e5b9f2
Tree: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/tree/e8e5b9f2
Diff: http://git-wip-us.apache.org/repos/asf/incubator-ponymail/diff/e8e5b9f2

Branch: refs/heads/master
Commit: e8e5b9f2ff2cdeacf59603e953fda7bae81249ff
Parents: d82c6c1
Author: Daniel Gruno <hu...@apache.org>
Authored: Thu Aug 18 13:50:56 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Thu Aug 18 13:50:56 2016 +0200

----------------------------------------------------------------------
 site/js/dev/ponymail_email_displays.js | 2 +-
 site/js/ponymail.js                    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/e8e5b9f2/site/js/dev/ponymail_email_displays.js
----------------------------------------------------------------------
diff --git a/site/js/dev/ponymail_email_displays.js b/site/js/dev/ponymail_email_displays.js
index bbf80e4..4df138f 100644
--- a/site/js/dev/ponymail_email_displays.js
+++ b/site/js/dev/ponymail_email_displays.js
@@ -490,7 +490,7 @@ function displaySingleThread(json) {
     // Sometimes emails are hidden for anonymous users, let's make 'em know...
     if (!current_thread_json[0]) {
         if (!login || !login.credentials) {
-            popup("Email not found!", "Sorry, it seems like we couldn't find this email for you. It may be private and hidden for non-authenticated users, in which case you could <a href='/oauth.html'>Log in</a> and see if that helps.")
+            popup("Email not found!", "Sorry, it seems like we couldn't find this email for you. It may be private and hidden for non-authenticated users, in which case you could <a href='/oauth.html'>Log in</a> and see if that helps.", 60)
         }
     }
     var mid = current_thread_json[0].mid.replace(/[<>]/g, "")

http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/e8e5b9f2/site/js/ponymail.js
----------------------------------------------------------------------
diff --git a/site/js/ponymail.js b/site/js/ponymail.js
index 7cce5b3..65c5996 100644
--- a/site/js/ponymail.js
+++ b/site/js/ponymail.js
@@ -1834,7 +1834,7 @@ function displaySingleThread(json) {
     // Sometimes emails are hidden for anonymous users, let's make 'em know...
     if (!current_thread_json[0]) {
         if (!login || !login.credentials) {
-            popup("Email not found!", "Sorry, it seems like we couldn't find this email for you. It may be private and hidden for non-authenticated users, in which case you could <a href='/oauth.html'>Log in</a> and see if that helps.")
+            popup("Email not found!", "Sorry, it seems like we couldn't find this email for you. It may be private and hidden for non-authenticated users, in which case you could <a href='/oauth.html'>Log in</a> and see if that helps.", 60)
         }
     }
     var mid = current_thread_json[0].mid.replace(/[<>]/g, "")