mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 20:44:07 +00:00
10 lines
288 B
JavaScript
10 lines
288 B
JavaScript
|
import {initComboMarkdownEditor} from './comp/ComboMarkdownEditor.js';
|
||
|
|
||
|
export function initRepoMilestoneEditor() {
|
||
|
const editor = document.querySelector('.page-content.repository.milestone .combo-markdown-editor');
|
||
|
if (!editor) {
|
||
|
return;
|
||
|
}
|
||
|
initComboMarkdownEditor(editor);
|
||
|
}
|