2018-03-17 18:26:18 +05:30
|
|
|
import Diff from '~/diff';
|
2018-10-15 14:42:47 +05:30
|
|
|
import GpgBadges from '~/gpg_badges';
|
2021-11-11 11:23:49 +05:30
|
|
|
import { initDiffStatsDropdown } from '~/init_diff_stats_dropdown';
|
2021-04-17 20:07:23 +05:30
|
|
|
import initCompareSelector from '~/projects/compare';
|
2023-03-17 16:20:25 +05:30
|
|
|
import syntaxHighlight from '~/syntax_highlight';
|
2021-04-17 20:07:23 +05:30
|
|
|
|
|
|
|
initCompareSelector();
|
2018-03-17 18:26:18 +05:30
|
|
|
|
2021-10-27 15:23:28 +05:30
|
|
|
new Diff(); // eslint-disable-line no-new
|
2023-07-09 08:55:56 +05:30
|
|
|
initDiffStatsDropdown();
|
2021-10-27 15:23:28 +05:30
|
|
|
GpgBadges.fetch();
|
2023-03-17 16:20:25 +05:30
|
|
|
|
|
|
|
syntaxHighlight([document.querySelector('.files')]);
|