mirror of https://github.com/metafizzy/isotope
Filter & sort magical layouts
http://isotope.metafizzy.co
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
708 B
29 lines
708 B
--- |
|
title: no items01 |
|
layout: default |
|
category: tests |
|
--- |
|
|
|
<section id="copy"> |
|
<p>What happens when there are no items for Isotope? If no items match `itemSelector`, container collapses. Plugin still <code>return this</code>.</p> |
|
</section> |
|
|
|
<div id="container"> |
|
{% for element in site.elements limit:20 %} |
|
{% include element-partial.html %} |
|
{% endfor %} |
|
</div> <!-- #container --> |
|
|
|
<script src="../{{ site.jquery_js }}"></script> |
|
<script src="../{{ site.isotope_js }}"></script> |
|
<script> |
|
$(function(){ |
|
|
|
var $container = $('#container'); |
|
|
|
$container.isotope({ |
|
itemSelector: '.foo' |
|
}).css('border', '10px solid'); |
|
|
|
}); |
|
</script> |