Guest User

Untitled

a guest
Dec 12th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. (function() {
  2. 'use strict';
  3. $('.tw-flex-grow-1').on("DOMSubtreeModified",function(){
  4. $(".link-fragment").each(function(){
  5. if (($(this).text().indexOf(".jpg") > 0 ) || (($(this).text().indexOf(".png") > 0 )) || (($(this).text().indexOf(".gif") > 0 ))|| (($(this).text().indexOf(".jpeg") > 0 ))){
  6. $(this).html("<img src='" + $(this).text() + "' width='200px'/>");
  7. }
  8. });
  9. });
Add Comment
Please, Sign In to add comment