|
|
@@ -3,13 +3,15 @@ import { react2angular } from 'react2angular'
|
|
|
|
|
|
import PdfPreview from '../components/pdf-preview'
|
|
|
import { rootContext } from '../../../shared/context/root-context'
|
|
|
-import PdfSynctexControls from '../components/pdf-synctex-controls'
|
|
|
-import { DetacherSynctexControl } from '../components/detach-synctex-control'
|
|
|
+import {
|
|
|
+ DefaultSynctexControl,
|
|
|
+ DetacherSynctexControl,
|
|
|
+} from '../components/detach-synctex-control'
|
|
|
|
|
|
App.component('pdfPreview', react2angular(rootContext.use(PdfPreview), []))
|
|
|
App.component(
|
|
|
'pdfSynctexControls',
|
|
|
- react2angular(rootContext.use(PdfSynctexControls), [])
|
|
|
+ react2angular(rootContext.use(DefaultSynctexControl), [])
|
|
|
)
|
|
|
App.component(
|
|
|
'detacherSynctexControl',
|