Browse Source

Adding colorbox for images within heartbeat stream

logicp 7 years ago
parent
commit
e0bf6069c6
2 changed files with 13 additions and 1 deletions
  1. 8 1
      js/heartbeat.js
  2. 5 0
      js/jquery.colorbox-min.js

+ 8 - 1
js/heartbeat.js

@@ -75,8 +75,10 @@
                 });
               }
             }
+
+            listenImages();
         }
-    }
+    };
 
 
   function updateFeed() {
@@ -89,7 +91,12 @@
         console.log('We are succeed!');
       }
     })
+  }
 
+  function listenImages() {
+    $('.heartbeat-content').find('img').each(function() {
+      $(this).colorbox({href: $(this).attr('src')});
+    });
   }
 
 })(jQuery, Drupal, drupalSettings);

File diff suppressed because it is too large
+ 5 - 0
js/jquery.colorbox-min.js


Some files were not shown because too many files changed in this diff