Skip to content

Commit

Permalink
Merge pull request #134 from jiewenhuang/dev
Browse files Browse the repository at this point in the history
fix:图库图片加载错误
  • Loading branch information
jiewenhuang authored Nov 9, 2023
2 parents b3f9b51 + 013dc4a commit 4e67347
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion templates/assets/js/min/photos.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion templates/assets/js/photos.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ $(document).ready(function(){
const item = $('<div class="grid-item wow fadeIn" data-sjsel="'+ currentImage.spec.groupName+'">' +
'<div class="card__picture">'+
'<a class="item animated wow jg-entry" href="'+ currentImage.spec.url+'" data-fancybox="gallery">'+
'<img src="' + baseUrl + currentImage.spec.url + '" alt="' + currentImage.spec.displayName + '"/>' +
'<img src="'+ currentImage.spec.url + '" alt="' + currentImage.spec.displayName + '"/>' +
'</a>'+
'</div>'+
'</div>');
Expand Down

0 comments on commit 4e67347

Please sign in to comment.