added missing imports

This commit is contained in:
Phil Hughes 2018-01-23 11:30:06 +00:00
parent aaf03c0c48
commit e22c007f50
No known key found for this signature in database
GPG key ID: 32245528C52E0F9F

View file

@ -1,7 +1,11 @@
import initNotes from '~/init_notes';
import ZenMode from '~/zen_mode';
import LineHighlighter from '../../../../line_highlighter';
import BlobViewer from '../../../../blob/viewer';
export default function () {
new LineHighlighter(); // eslint-disable-line no-new
new BlobViewer(); // eslint-disable-line no-new
initNotes();
new ZenMode(); // eslint-disable-line no-new
}