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: fd8c590eb4e7abece1c4fc704d3b58a5302af32e (plain)
1
2
3
4
5
6
7
8
import $ from 'jquery';
import docs from '~/docs/docs_bundle';
import VersionCheckImage from '~/version_check_image';

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