You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by ga...@apache.org on 2017/08/22 10:02:01 UTC

[couchdb-fauxton] branch preactjs updated (78c21e3 -> 9237de4)

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

garren pushed a change to branch preactjs
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git.


    omit 78c21e3  basic notification appearing
     new 9237de4  basic notification appearing

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (78c21e3)
            \
             N -- N -- N   refs/heads/preactjs (9237de4)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 app/addons/replication/controller.js | 1 -
 1 file changed, 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
['"commits@couchdb.apache.org" <co...@couchdb.apache.org>'].

[couchdb-fauxton] 01/01: basic notification appearing

Posted by ga...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

garren pushed a commit to branch preactjs
in repository https://gitbox.apache.org/repos/asf/couchdb-fauxton.git

commit 9237de45475a2fb62d021db74d41367e4dbb1baf
Author: Garren Smith <ga...@gmail.com>
AuthorDate: Tue Aug 22 11:42:04 2017 +0200

    basic notification appearing
---
 app/addons/fauxton/notifications/notifications.js | 1 +
 assets/less/templates.less                        | 2 +-
 devserver.js                                      | 1 +
 3 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/app/addons/fauxton/notifications/notifications.js b/app/addons/fauxton/notifications/notifications.js
index b58d8d5..c252e2c 100644
--- a/app/addons/fauxton/notifications/notifications.js
+++ b/app/addons/fauxton/notifications/notifications.js
@@ -206,6 +206,7 @@ var Notification = React.createClass({
   },
 
   render: function () {
+    //setTimeout(() => this.onAnimationComplete(), 3000); // Temp work around so that notifications appear and disappear
     var iconMap = {
       error: 'fonticon-attention-circled',
       info: 'fonticon-info-circled',
diff --git a/assets/less/templates.less b/assets/less/templates.less
index 711711b..9702f4e 100644
--- a/assets/less/templates.less
+++ b/assets/less/templates.less
@@ -295,6 +295,6 @@
 }
 
 .notification-wrapper {
-  opacity: 0;
+  opacity: 1; // Temp change to make the notifications visible
   height: 0;
 }
diff --git a/devserver.js b/devserver.js
index 332a699..98b13cb 100644
--- a/devserver.js
+++ b/devserver.js
@@ -88,6 +88,7 @@ const runWebpackServer = function () {
     overlay: true,
     hot: false,
     historyApiFallback: false,
+    disableHostCheck: true,
     stats: {
       colors: true,
     },

-- 
To stop receiving notification emails like this one, please contact
"commits@couchdb.apache.org" <co...@couchdb.apache.org>.