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

monitoring_bundle.js « monitoring « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b3ce931041767f1dcacb761e36a13bc0afbe6196 (plain)
1
2
3
4
5
6
import PrometheusGraph from './prometheus_graph';

document.addEventListener('DOMContentLoaded', function onLoad() {
  document.removeEventListener('DOMContentLoaded', onLoad, false);
  return new PrometheusGraph();
}, false);