From 73578911e8fef2e77bcd8627db415ede721ef1e4 Mon Sep 17 00:00:00 2001 From: FishbaitHarry Date: Sat, 19 Sep 2015 18:09:15 +0200 Subject: [PATCH] Docs for Collection#at behavior --- index.html | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index e688228b..21a85c78 100644 --- a/index.html +++ b/index.html @@ -2048,7 +2048,8 @@ var book = library.get(110);
Get a model from a collection, specified by index. Useful if your collection is sorted, and if your collection isn't sorted, at will still - retrieve models in insertion order. + retrieve models in insertion order. When passed a negative index, it + will retrieve the model from the back of the collection.