mirror of https://github.com/status-im/codimd.git
Revert "Load js-url lib using legacy-loader"
Didn't work in Firefox for some reason.
`[Script Loader] ReferenceError: module is not defined`
This reverts commit 5b83deb043
.
This commit is contained in:
parent
567f26f5b9
commit
3a752fde51
|
@ -56,7 +56,6 @@
|
||||||
"js-yaml": "^3.7.0",
|
"js-yaml": "^3.7.0",
|
||||||
"jsdom-nogyp": "^0.8.3",
|
"jsdom-nogyp": "^0.8.3",
|
||||||
"keymaster": "^1.6.2",
|
"keymaster": "^1.6.2",
|
||||||
"legacy-loader": "0.0.2",
|
|
||||||
"list.js": "^1.5.0",
|
"list.js": "^1.5.0",
|
||||||
"lodash": "^4.17.4",
|
"lodash": "^4.17.4",
|
||||||
"lz-string": "1.4.4",
|
"lz-string": "1.4.4",
|
||||||
|
|
|
@ -12,16 +12,14 @@ import {
|
||||||
urlpath
|
urlpath
|
||||||
} from './lib/config'
|
} from './lib/config'
|
||||||
|
|
||||||
var jsUrl = require('js-url')
|
|
||||||
|
|
||||||
window.migrateHistoryFromTempCallback = null
|
window.migrateHistoryFromTempCallback = null
|
||||||
|
|
||||||
migrateHistoryFromTemp()
|
migrateHistoryFromTemp()
|
||||||
|
|
||||||
function migrateHistoryFromTemp () {
|
function migrateHistoryFromTemp () {
|
||||||
if (jsUrl('#tempid')) {
|
if (window.url('#tempid')) {
|
||||||
$.get(`${serverurl}/temp`, {
|
$.get(`${serverurl}/temp`, {
|
||||||
tempid: jsUrl('#tempid')
|
tempid: window.url('#tempid')
|
||||||
})
|
})
|
||||||
.done(data => {
|
.done(data => {
|
||||||
if (data && data.temp) {
|
if (data && data.temp) {
|
||||||
|
|
|
@ -21,8 +21,6 @@ import _ from 'lodash'
|
||||||
|
|
||||||
import List from 'list.js'
|
import List from 'list.js'
|
||||||
|
|
||||||
var jsUrl = require('js-url')
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
checkLoginStateChanged,
|
checkLoginStateChanged,
|
||||||
setloginStateChangeEvent
|
setloginStateChangeEvent
|
||||||
|
@ -1476,12 +1474,12 @@ $('#gistImportModalConfirm').click(function () {
|
||||||
if (!isValidURL(gisturl)) {
|
if (!isValidURL(gisturl)) {
|
||||||
showMessageModal('<i class="fa fa-github"></i> Import from Gist', 'Not a valid URL :(', '', '', false)
|
showMessageModal('<i class="fa fa-github"></i> Import from Gist', 'Not a valid URL :(', '', '', false)
|
||||||
} else {
|
} else {
|
||||||
var hostname = jsUrl('hostname', gisturl)
|
var hostname = window.url('hostname', gisturl)
|
||||||
if (hostname !== 'gist.github.com') {
|
if (hostname !== 'gist.github.com') {
|
||||||
showMessageModal('<i class="fa fa-github"></i> Import from Gist', 'Not a valid Gist URL :(', '', '', false)
|
showMessageModal('<i class="fa fa-github"></i> Import from Gist', 'Not a valid Gist URL :(', '', '', false)
|
||||||
} else {
|
} else {
|
||||||
ui.spinner.show()
|
ui.spinner.show()
|
||||||
$.get('https://api.github.com/gists/' + jsUrl('-1', gisturl))
|
$.get('https://api.github.com/gists/' + window.url('-1', gisturl))
|
||||||
.done(function (data) {
|
.done(function (data) {
|
||||||
if (data.files) {
|
if (data.files) {
|
||||||
var contents = ''
|
var contents = ''
|
||||||
|
|
|
@ -190,7 +190,7 @@ module.exports = {
|
||||||
index: [
|
index: [
|
||||||
'babel-polyfill',
|
'babel-polyfill',
|
||||||
'script!jquery-ui-resizable',
|
'script!jquery-ui-resizable',
|
||||||
'js-url',
|
'script!js-url',
|
||||||
'expose?filterXSS!xss',
|
'expose?filterXSS!xss',
|
||||||
'script!Idle.Js',
|
'script!Idle.Js',
|
||||||
'expose?LZString!lz-string',
|
'expose?LZString!lz-string',
|
||||||
|
@ -241,7 +241,7 @@ module.exports = {
|
||||||
'expose?jsyaml!js-yaml',
|
'expose?jsyaml!js-yaml',
|
||||||
'script!mermaid',
|
'script!mermaid',
|
||||||
'expose?moment!moment',
|
'expose?moment!moment',
|
||||||
'js-url',
|
'script!js-url',
|
||||||
'script!handlebars',
|
'script!handlebars',
|
||||||
'expose?hljs!highlight.js',
|
'expose?hljs!highlight.js',
|
||||||
'expose?emojify!emojify.js',
|
'expose?emojify!emojify.js',
|
||||||
|
@ -374,8 +374,7 @@ module.exports = {
|
||||||
'bootstrap-tooltip': path.join(__dirname, 'public/vendor/bootstrap/tooltip.min.js'),
|
'bootstrap-tooltip': path.join(__dirname, 'public/vendor/bootstrap/tooltip.min.js'),
|
||||||
'headjs': path.join(__dirname, 'node_modules/reveal.js/lib/js/head.min.js'),
|
'headjs': path.join(__dirname, 'node_modules/reveal.js/lib/js/head.min.js'),
|
||||||
'reveal-markdown': path.join(__dirname, 'public/js/reveal-markdown.js'),
|
'reveal-markdown': path.join(__dirname, 'public/js/reveal-markdown.js'),
|
||||||
abcjs: path.join(__dirname, 'public/vendor/abcjs_basic_3.1.1-min.js'),
|
abcjs: path.join(__dirname, 'public/vendor/abcjs_basic_3.1.1-min.js')
|
||||||
'js-url': path.join(__dirname, 'node_modules/js-url/url.js')
|
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -430,9 +429,6 @@ module.exports = {
|
||||||
}, {
|
}, {
|
||||||
test: /\.gif(\?v=\d+\.\d+\.\d+)?$/,
|
test: /\.gif(\?v=\d+\.\d+\.\d+)?$/,
|
||||||
loader: 'url?limit=10000&mimetype=image/gif'
|
loader: 'url?limit=10000&mimetype=image/gif'
|
||||||
}, {
|
|
||||||
test: /\/node_modules\/js-url\/url.js/,
|
|
||||||
loader: 'legacy'
|
|
||||||
}]
|
}]
|
||||||
},
|
},
|
||||||
node: {
|
node: {
|
||||||
|
|
Loading…
Reference in New Issue