mirror of
https://github.com/twisterarmy/twister-html.git
synced 2025-01-14 00:48:05 +00:00
adding link check for preview
This commit is contained in:
parent
3d27a0e418
commit
917cd1301b
@ -336,16 +336,16 @@ var postExpandFunction = function( e, postLi )
|
||||
|
||||
$postExpandedContent.slideDown( "fast" );
|
||||
|
||||
if ($.Options.getShowPreviewOpt() == 'enable')
|
||||
{
|
||||
if ($.Options.getShowPreviewOpt() == 'enable'){
|
||||
var previewContainer=$postExpandedContent.find(".preview-container")[0];
|
||||
/* was the preview added before... */
|
||||
if ($(previewContainer).children().length == 0)
|
||||
{
|
||||
if ($(previewContainer).children().length == 0) {
|
||||
var link = originalPost.find("a[rel='nofollow']");
|
||||
if (/(\.jpg)|(\.gif)|(\.png)|(\.jpeg)/.test(link.html().toLowerCase()))
|
||||
{
|
||||
$(previewContainer).append($("<img src='" + link.html() + "' class='image-preview' />"));
|
||||
/*is there any link in the post?*/
|
||||
if (link.siblings().length > 0){
|
||||
if (/(\.jpg)|(\.gif)|(\.png)|(\.jpeg)/.test(link.html().toLowerCase())){
|
||||
$(previewContainer).append($("<img src='" + link.html() + "' class='image-preview' />"));
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user