
* Dark themed cards * Responsiveness fixes * added dark stylesheet option * highlight theme toggle * added highlight function * added highlight themes to assets/css * offline highlight implementation * Fixes for masonry * Revert "added highlight themes to assets/css" This reverts commit ee7cb7675671430697f3a38bd5a56405179e6dd9. * Update `code syntax highlighting` to use jsdelivr CDN * Project card responsiveness fixes * added personal website to readme veedata.github.io * Reverted responsiveness chnages * Minor adjustments Co-authored-by: rohandebsarkar <rohandebsarkar@gmail.com> Co-authored-by: Maruan Al-Shedivat <maruan@genesistherapeutics.ai>
13 lines
293 B
JavaScript
13 lines
293 B
JavaScript
$(document).ready(function() {
|
|
// Init Masonry
|
|
var $grid = $('.grid').masonry({
|
|
gutter: 10,
|
|
horizontalOrder: true,
|
|
itemSelector: '.grid-item',
|
|
});
|
|
// Layout Masonry after each image loads
|
|
$grid.imagesLoaded().progress( function() {
|
|
$grid.masonry('layout');
|
|
});
|
|
});
|