mirror of
				https://github.com/go-gitea/gitea
				synced 2025-10-31 03:18:24 +00:00 
			
		
		
		
	export monaco editor on window.codeEditors (#11739)
Fixes: https://github.com/go-gitea/gitea/issues/10409 Co-authored-by: Lauris BH <lauris@nix.lv>
This commit is contained in:
		| @@ -35,6 +35,12 @@ function updateEditor(monaco, editor, filenameInput) { | ||||
|   if (language !== newLanguage) monaco.editor.setModelLanguage(model, newLanguage); | ||||
| } | ||||
|  | ||||
| // export editor for customization - https://github.com/go-gitea/gitea/issues/10409 | ||||
| function exportEditor(editor) { | ||||
|   if (!window.codeEditors) window.codeEditors = []; | ||||
|   if (!window.codeEditors.includes(editor)) window.codeEditors.push(editor); | ||||
| } | ||||
|  | ||||
| export async function createCodeEditor(textarea, filenameInput, previewFileModes) { | ||||
|   const filename = basename(filenameInput.value); | ||||
|   const previewLink = document.querySelector('a[data-tab=preview]'); | ||||
| @@ -81,6 +87,8 @@ export async function createCodeEditor(textarea, filenameInput, previewFileModes | ||||
|   const loading = document.querySelector('.editor-loading'); | ||||
|   if (loading) loading.remove(); | ||||
|  | ||||
|   exportEditor(editor); | ||||
|  | ||||
|   return editor; | ||||
| } | ||||
|  | ||||
|   | ||||
		Reference in New Issue
	
	Block a user