Skip to content

Commit

Permalink
Merge pull request #1217 from lucmuller/master
Browse files Browse the repository at this point in the history
[SERVICES]Fix Slideshare url
  • Loading branch information
AmauriC authored May 15, 2024
2 parents b5e6173 + bf0a968 commit aeac716
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tarteaucitron.services.js
Original file line number Diff line number Diff line change
Expand Up @@ -4153,7 +4153,7 @@ tarteaucitron.services.slideshare = {
id = tarteaucitron.getElemAttr(x, "data-id"),
width = tarteaucitron.getElemAttr(x, "width"),
height = tarteaucitron.getElemAttr(x, "height"),
url = '//www.slideshare.net/slideshow/embed_code/' + id;
url = '//www.slideshare.net/slideshow/embed_code/key/' + id;

return '<iframe title="' + frame_title + '" src="' + url + '" width="' + width + '" height="' + height + '" scrolling="no" allowtransparency allowfullscreen></iframe>';
});
Expand Down
2 changes: 1 addition & 1 deletion tarteaucitron.services.min.js

Large diffs are not rendered by default.

0 comments on commit aeac716

Please sign in to comment.