From eb54bf5fb78c20fc3bbf7094840cd5fb1f390b8a Mon Sep 17 00:00:00 2001 From: David DeSandro Date: Fri, 28 Jan 2011 11:11:05 -0500 Subject: [PATCH] docs : Filtering - fix typo THX Sanjeev Dharap --- _posts/docs/2010-12-06-filtering.mdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/docs/2010-12-06-filtering.mdown b/_posts/docs/2010-12-06-filtering.mdown index 87e6f06..fcbf53d 100644 --- a/_posts/docs/2010-12-06-filtering.mdown +++ b/_posts/docs/2010-12-06-filtering.mdown @@ -45,7 +45,7 @@ $('#container').isotope({ filter: '.metal' }); {% endhighlight %} -Filtering selectors work just as expected. `.alkali, alkaline-earth` with show both `.alkali` AND ` .alkaline-earth` items, and hide all others. `.metal:not(.transition)` will show `.metal` item elements that are not `.transition`. +Filtering selectors work just as expected. `.alkali, .alkaline-earth` will show both `.alkali` AND ` .alkaline-earth` items, and hide all others. `.metal.transition` will show elements that have both `.metal` and `.transition` classes. `.metal:not(.transition)` will show `.metal` item elements that are not `.transition`. ## Creating interactive buttons