summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/pages/projects/commits/show/index.js
blob: ee74628a9941d02d8a9effd9cf5d5e3bc22f8394 (plain)
1
2
3
4
5
6
7
8
9
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
import CommitsList from '~/commits';
import GpgBadges from '~/gpg_badges';
import mountCommits from '~/projects/commits';

new CommitsList(document.querySelector('.js-project-commits-show').dataset.commitsLimit); // eslint-disable-line no-new
new ShortcutsNavigation(); // eslint-disable-line no-new
GpgBadges.fetch();
mountCommits(document.getElementById('js-author-dropdown'));