mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 20:52:56 +01:00
Add support for running in the file protocol
This commit is contained in:
parent
abf4bd70a3
commit
a4e18e4226
2 changed files with 13 additions and 3 deletions
|
|
@ -1,5 +1,7 @@
|
|||
(function() {
|
||||
|
||||
var IS_FILE_PROTOCOL = (window.location.protocol === 'file:');
|
||||
|
||||
var LOADER_OPTS = (function() {
|
||||
function parseQueryString() {
|
||||
var str = window.location.search;
|
||||
|
|
@ -32,7 +34,15 @@
|
|||
Component.prototype.getResolvedPath = function() {
|
||||
var resolvedPath = this.paths[this.selectedPath];
|
||||
if (this.selectedPath === 'npm') {
|
||||
resolvedPath = '/monaco-editor/' + resolvedPath;
|
||||
if (IS_FILE_PROTOCOL) {
|
||||
resolvedPath = '../' + resolvedPath;
|
||||
} else {
|
||||
resolvedPath = '/monaco-editor/' + resolvedPath;
|
||||
}
|
||||
} else {
|
||||
if (IS_FILE_PROTOCOL) {
|
||||
resolvedPath = '../..' + resolvedPath;
|
||||
}
|
||||
}
|
||||
return resolvedPath;
|
||||
};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue