Browse Source

Merge pull request #130 from erqan/preview-no-link-fix

Preview no link fix
master
miguelfreitas 11 years ago
parent
commit
13d354e98c
  1. 2
      css/style.css
  2. 12
      js/interface_common.js

2
css/style.css

@ -954,12 +954,14 @@ button.disabled:hover
.image-preview .image-preview
{ {
max-height: 500px; max-height: 500px;
max-width: 530px;
width: auto; width: auto;
} }
.preview-container .preview-container
{ {
max-height: 500px; max-height: 500px;
width: 100%; width: 100%;
text-align: center;
} }
.post-stats .post-stats
{ {

12
js/interface_common.js

@ -336,19 +336,19 @@ var postExpandFunction = function( e, postLi )
$postExpandedContent.slideDown( "fast" ); $postExpandedContent.slideDown( "fast" );
if ($.Options.getShowPreviewOpt() == 'enable') if ($.Options.getShowPreviewOpt() == 'enable'){
{
var previewContainer=$postExpandedContent.find(".preview-container")[0]; var previewContainer=$postExpandedContent.find(".preview-container")[0];
/* was the preview added before... */ /* was the preview added before... */
if ($(previewContainer).children().length == 0) if ($(previewContainer).children().length == 0) {
{
var link = originalPost.find("a[rel='nofollow']"); var link = originalPost.find("a[rel='nofollow']");
if (/(\.jpg)|(\.gif)|(\.png)|(\.jpeg)/.test(link.html().toLowerCase())) /*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' />")); $(previewContainer).append($("<img src='" + link.html() + "' class='image-preview' />"));
} }
} }
} }
}
// insert "reply_to" before // insert "reply_to" before
requestRepliedBefore(originalLi); requestRepliedBefore(originalLi);
// insert replies to this post after // insert replies to this post after

Loading…
Cancel
Save