debian-mirror-gitlab/app/assets/javascripts/pages/projects/commits/show/index.js

10 lines
458 B
JavaScript
Raw Normal View History

2021-03-11 19:13:27 +05:30
import ShortcutsNavigation from '~/behaviors/shortcuts/shortcuts_navigation';
2018-03-17 18:26:18 +05:30
import CommitsList from '~/commits';
import GpgBadges from '~/gpg_badges';
2020-04-22 19:07:51 +05:30
import mountCommits from '~/projects/commits';
2021-02-22 17:27:13 +05:30
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'));