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/09/05 09:30:32 UTC

incubator-ponymail git commit: increase delay to 150ms

Repository: incubator-ponymail
Updated Branches:
  refs/heads/coffee-and-cake 87d0f3d3c -> a5173b174


increase delay to 150ms


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

Branch: refs/heads/coffee-and-cake
Commit: a5173b1742165d1e607ad1725221aa2fd59fb78e
Parents: 87d0f3d
Author: Daniel Gruno <hu...@apache.org>
Authored: Mon Sep 5 11:30:21 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Mon Sep 5 11:30:21 2016 +0200

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


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/a5173b17/site/js/coffee/listview_basic.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/listview_basic.coffee b/site/js/coffee/listview_basic.coffee
index d472b26..61a0ddf 100644
--- a/site/js/coffee/listview_basic.coffee
+++ b/site/js/coffee/listview_basic.coffee
@@ -268,7 +268,7 @@ class BasicListView
         me = this
         @scrollTimer = window.setTimeout( () ->
             me.swipeDirection()
-        , 50)
+        , 150)
         
     swipeDirection: () ->
         if @direction == 'down'

http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/a5173b17/site/js/ponymail-coffee.js
----------------------------------------------------------------------
diff --git a/site/js/ponymail-coffee.js b/site/js/ponymail-coffee.js
index d8ba39a..82c6214 100644
--- a/site/js/ponymail-coffee.js
+++ b/site/js/ponymail-coffee.js
@@ -1560,7 +1560,7 @@ BasicListView = (function() {
     me = this;
     return this.scrollTimer = window.setTimeout(function() {
       return me.swipeDirection();
-    }, 50);
+    }, 150);
   };
 
   BasicListView.prototype.swipeDirection = function() {