Skip to content

Commit

Permalink
Added 'groupBy' to underscore proxy methods
Browse files Browse the repository at this point in the history
  • Loading branch information
asan committed Aug 4, 2011
1 parent 6bb43c1 commit 3b68648
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion backbone.js
Expand Up @@ -641,7 +641,7 @@
var methods = ['forEach', 'each', 'map', 'reduce', 'reduceRight', 'find', 'detect',
'filter', 'select', 'reject', 'every', 'all', 'some', 'any', 'include',
'contains', 'invoke', 'max', 'min', 'sortBy', 'sortedIndex', 'toArray', 'size',
'first', 'rest', 'last', 'without', 'indexOf', 'lastIndexOf', 'isEmpty'];
'first', 'rest', 'last', 'without', 'indexOf', 'lastIndexOf', 'isEmpty', 'groupBy'];

// Mix in each Underscore method as a proxy to `Collection#models`.
_.each(methods, function(method) {
Expand Down
7 changes: 4 additions & 3 deletions index.html
Expand Up @@ -207,7 +207,7 @@
<li><a href="#Collection-constructor">constructor / initialize</a></li>
<li><a href="#Collection-models">models</a></li>
<li><a href="#Collection-toJSON">toJSON</a></li>
<li><a href="#Collection-Underscore-Methods"><b>Underscore Methods (25)</b></a></li>
<li><a href="#Collection-Underscore-Methods"><b>Underscore Methods (26)</b></a></li>
<li><a href="#Collection-add">add</a></li>
<li><a href="#Collection-remove">remove</a></li>
<li><a href="#Collection-get">get</a></li>
Expand Down Expand Up @@ -1113,9 +1113,9 @@ <h2 id="Collection">Backbone.Collection</h2>
</pre>

<p id="Collection-Underscore-Methods">
<b class="header">Underscore Methods (25)</b>
<b class="header">Underscore Methods (26)</b>
<br />
Backbone proxies to <b>Underscore.js</b> to provide 25 iteration functions
Backbone proxies to <b>Underscore.js</b> to provide 26 iteration functions
on <b>Backbone.Collection</b>. They aren't all documented here, but
you can take a look at the Underscore documentation for the full details&hellip;
</p>
Expand All @@ -1135,6 +1135,7 @@ <h2 id="Collection">Backbone.Collection</h2>
<li><a href="http://documentcloud.github.com/underscore/#max">max</a></li>
<li><a href="http://documentcloud.github.com/underscore/#min">min</a></li>
<li><a href="http://documentcloud.github.com/underscore/#sortBy">sortBy</a></li>
<li><a href="http://documentcloud.github.com/underscore/#groupBy">groupBy</a></li>
<li><a href="http://documentcloud.github.com/underscore/#sortedIndex">sortedIndex</a></li>
<li><a href="http://documentcloud.github.com/underscore/#toArray">toArray</a></li>
<li><a href="http://documentcloud.github.com/underscore/#size">size</a></li>
Expand Down

0 comments on commit 3b68648

Please sign in to comment.