Browse Source

docs : Filtering - fix typo THX Sanjeev Dharap

pull/14/head
David DeSandro 14 years ago
parent
commit
eb54bf5fb7
  1. 2
      _posts/docs/2010-12-06-filtering.mdown

2
_posts/docs/2010-12-06-filtering.mdown

@ -45,7 +45,7 @@ $('#container').isotope({ filter: '.metal' });
{% endhighlight %} {% 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 ## Creating interactive buttons

Loading…
Cancel
Save