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

sketch_viewer.js « blob « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c1c6339fdb501967379a4c167ded1aae313acdb (plain)
1
2
3
4
5
6
7
8
/* eslint-disable no-new */
import SketchLoader from './sketch';

export default () => {
  const el = document.getElementById('js-sketch-viewer');

  new SketchLoader(el);
};