Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « index « help « pages « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1bafe564a37a5c8246d31110ae6ffc0c0d2b9250 (plain)
1
2
3
4
5
6
7
8
import $ from 'jquery';
import VersionCheckImage from '~/version_check_image';
import docs from '~/docs/docs_bundle';

document.addEventListener('DOMContentLoaded', () => {
  docs();
  VersionCheckImage.bindErrorEvent($('img.js-version-status-badge'));
});