Load js-url lib using legacy-loader

Doesn't use eval, plus no window object access
This commit is contained in:
Literallie 2017-10-19 22:48:13 +02:00
parent 996cb37991
commit 5b83deb043
No known key found for this signature in database
GPG key ID: 7BE463C902ED152C
4 changed files with 17 additions and 7 deletions

View file

@ -12,14 +12,16 @@ import {
urlpath
} from './lib/config'
var jsUrl = require('js-url')
window.migrateHistoryFromTempCallback = null
migrateHistoryFromTemp()
function migrateHistoryFromTemp () {
if (window.url('#tempid')) {
if (jsUrl('#tempid')) {
$.get(`${serverurl}/temp`, {
tempid: window.url('#tempid')
tempid: jsUrl('#tempid')
})
.done(data => {
if (data && data.temp) {