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:47:00 UTC

[2/3] incubator-ponymail git commit: tweak min-height setting

tweak min-height setting


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

Branch: refs/heads/coffee-and-cake
Commit: 391794b83bbf5b92aabe0c569638e0339dbc142e
Parents: 180f6e1
Author: Daniel Gruno <hu...@apache.org>
Authored: Mon Sep 5 11:46:42 2016 +0200
Committer: Daniel Gruno <hu...@apache.org>
Committed: Mon Sep 5 11:46:42 2016 +0200

----------------------------------------------------------------------
 site/js/coffee/listview_basic.coffee | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-ponymail/blob/391794b8/site/js/coffee/listview_basic.coffee
----------------------------------------------------------------------
diff --git a/site/js/coffee/listview_basic.coffee b/site/js/coffee/listview_basic.coffee
index 71dd9ff..a56cb3d 100644
--- a/site/js/coffee/listview_basic.coffee
+++ b/site/js/coffee/listview_basic.coffee
@@ -114,7 +114,7 @@ class BasicListView
         
         if lastitem
             bj = lastitem.getBoundingClientRect()
-            @lvitems.style.minHeight = (@rpp*bj.height) + "px"
+            @lvitems.style.minHeight = (@rpp*(bj.height+1)) + "px"
             
         
         ### If we made buttons, clone them at the bottom ###