075f5ed9fc
- Cleans the fork project layout by removing the grid & reverting back to full flexbox to allow for the layout to correctly expand. - Removes duplicated markup - Fixes a bug where the forked project would trigger the load indicator
7 lines
200 B
JavaScript
7 lines
200 B
JavaScript
export default () => {
|
|
$('.js-fork-thumbnail').on('click', function forkThumbnailClicked() {
|
|
if ($(this).hasClass('disabled')) return false;
|
|
|
|
return $('.js-fork-content').toggle();
|
|
});
|
|
};
|