debian-mirror-gitlab/app/assets/javascripts/blob/sketch_viewer.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

8 lines
177 B
JavaScript
Raw Normal View History

2017-08-17 22:00:37 +05:30
import SketchLoader from './sketch';
2018-03-27 19:54:05 +05:30
export default () => {
2017-08-17 22:00:37 +05:30
const el = document.getElementById('js-sketch-viewer');
2023-06-20 00:43:36 +05:30
new SketchLoader(el); // eslint-disable-line no-new
2018-03-27 19:54:05 +05:30
};