Guest User

Untitled

a guest
Jan 22nd, 2018
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. else {
  2. $('.thumb.selected').removeClass('selected');
  3. $('.preview').animate({height: '0px'}, 150).remove();
  4.  
  5.  
  6. $(this).addClass('selected');
  7. var img = $(this).find('img');
  8. var imgHeight = img.attr('height');
  9. var imgClone = img.clone();
  10. var endRow = parseInt(m4($(this).prevAll().length+1));
  11.  
  12. $('<li class="preview"><div class="caption empty"><a href="#" class="add">Add a caption</a><a href="#" class="edit">This is a caption</a><form class="captionForm"><input type="text" value="This is a caption" /><div class="buttons clearfix"><input type="submit" value="Save" class="button medium blue"><a class="grey medium button" href="#cancel">Cancel</a></div></form></div></li>')
  13. .insertAfter('.thumb:nth-child(' + endRow + ')')
  14. .animate({height: imgHeight+'px'},250);
  15. imgClone.appendTo('.preview');
  16. }
Add Comment
Please, Sign In to add comment