2013-03-13 44 views
0

我有一個洗牌按鈕,工作正常,我的同位素設置,直到我刪除了一些項目。嘗試刪除一個集團,然後洗牌:http://apany.com/assistants/同位素洗牌後刪除和重新佈局

 $('#shuffle').click(function(){ 
    $container.isotope('shuffle'); 
    }); 

    $('.delete').click(function(){ 
    $(this).parent().remove(); 
    $container.isotope('reLayout'); 
    return false; 
    }); 

我完全出我的深度這裏。任何幫助將非常感激。

回答

1

您正在使用jQuery刪除功能,而不是使用Isotope刪除功能。我相信你需要將刪除線更改爲:

$container.isotope('remove', $(this).parent());