mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
20 lines
594 B
JavaScript
20 lines
594 B
JavaScript
|
import App from '../../base'
|
||
|
import importOverleafModules from '../../../macros/import-overleaf-module.macro'
|
||
|
|
||
|
const eModules = importOverleafModules('editorToolbarButtons')
|
||
|
const editorToolbarButtons = eModules.map(item => item.import.default)
|
||
|
|
||
|
export default App.controller('EditorToolbarController', ($scope, ide) => {
|
||
|
const editorButtons = []
|
||
|
|
||
|
for (const editorToolbarButton of editorToolbarButtons) {
|
||
|
const button = editorToolbarButton.button($scope, ide)
|
||
|
|
||
|
if (editorToolbarButton.source) {
|
||
|
editorButtons.push(button)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
$scope.editorButtons = editorButtons
|
||
|
})
|