mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-07 20:31:06 -05:00
c8f0885316
GitOrigin-RevId: 812d3b5f1df7e769c8be732ccb31653e8e9a8aa3
19 lines
594 B
JavaScript
19 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
|
|
})
|