author | ymh <ymh.work@gmail.com> |
Tue, 09 Jun 2015 11:14:17 +0000 | |
changeset 6 | 490d5cc509ed |
parent 0 | d970ebf37754 |
permissions | -rwxr-xr-x |
0 | 1 |
|
2 |
$('#insert a').click(function(){ |
|
3 |
var $newEls = $( fakeElement.getGroup() ); |
|
4 |
$container.isotope( 'insert', $newEls ); |
|
5 |
||
6 |
return false; |
|
7 |
}); |
|
8 |
||
9 |
$('#append a').click(function(){ |
|
10 |
var $newEls = $( fakeElement.getGroup() ); |
|
11 |
$container.append( $newEls ).isotope( 'appended', $newEls ); |
|
12 |
||
13 |
return false; |
|
14 |
}); |