You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
661 B
23 lines
661 B
<script> |
|
window.pathLib = "<%- lib('') %>"; |
|
window.pathSelfLib = "<%- selfLib('') %>"; |
|
|
|
var originalConsoleWarn = console.warn; |
|
console.warn = function (message) { |
|
if (message.startsWith('Duplicate definition of module')) return; |
|
originalConsoleWarn.apply(console, arguments); |
|
}; |
|
</script> |
|
|
|
<!-- Load monaco-editor --> |
|
<script src="<%- lib('monaco-editor/0.16.2/min/vs/loader.js') %>"></script> |
|
<script src="<%- selfLib('monaco-editor.js') %>"></script> |
|
<link rel="stylesheet" href="<%- selfLib('monaco-editor.css') %>"> |
|
|
|
<% |
|
this.showLoadingEditor = () => { |
|
%> |
|
<div class="ui active medium text loader">编辑器加载中 …</div> |
|
<% |
|
}; |
|
%>
|
|
|