1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-07-31 02:30:13 +02:00

fix paths

This commit is contained in:
Kushagra Gour
2017-11-20 00:34:49 +05:30
parent a5722564a4
commit 4d3915e185
2 changed files with 3 additions and 3 deletions

View File

@@ -1631,7 +1631,7 @@ globalConsoleContainerEl
'<script src="' +
(chrome.extension
? chrome.extension.getURL('lib/screenlog.js')
: `${location.origin}/${BASE_PATH}/lib/screenlog.js`) +
: `${location.origin}${BASE_PATH}/lib/screenlog.js`) +
'"></script>';
if (jsMode === JsModes.ES6) {
@@ -2618,7 +2618,7 @@ globalConsoleContainerEl
function init() {
var lastCode;
CodeMirror.modeURL = `${BASE_PATH}/lib/codemirror/mode/%N/%N.js`;
CodeMirror.modeURL = `lib/codemirror/mode/%N/%N.js`;
function getToggleLayoutButtonListener(mode) {
return function() {