From 0d935b0427be9dc30804aceb29938ba29c91472e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mislav=20Marohnic=CC=81?= Date: Mon, 26 Mar 2012 13:42:38 +0200 Subject: [PATCH 1/5] have sidebar scroll natively on touch devices --- index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/index.html b/index.html index 40848c25c..95b786316 100644 --- a/index.html +++ b/index.html @@ -23,6 +23,7 @@ width: 200px; overflow-y: auto; overflow-x: hidden; + -webkit-overflow-scrolling: touch; padding: 15px 0 30px 30px; border-right: 1px solid #bbb; box-shadow: 0 0 20px #ccc; -webkit-box-shadow: 0 0 20px #ccc; -moz-box-shadow: 0 0 20px #ccc; From 6f50830b25c41a22c1d5a165bc13a71a65b9d934 Mon Sep 17 00:00:00 2001 From: Jeremy Ashkenas Date: Mon, 2 Apr 2012 13:05:52 -0400 Subject: [PATCH 2/5] Fixes #538 -- confusing wording around chaining. --- index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/index.html b/index.html index 95b786316..32babe334 100644 --- a/index.html +++ b/index.html @@ -1368,8 +1368,7 @@ _.map([1, 2, 3], function(n){ return n * 2; }); _([1, 2, 3]).map(function(n){ return n * 2; });

- Using the object-oriented style allows you to chain together methods. Calling - chain on a wrapped object will cause all future method calls to + Calling chain on a wrapped object will cause all future method calls to return wrapped objects as well. When you've finished the computation, use value to retrieve the final value. Here's an example of chaining together a map/flatten/reduce, in order to get the word count of @@ -1520,7 +1519,8 @@ _([1, 2, 3]).value(); 1.2.4Jan. 4, 2012