Dont use jquery in import handler (#4153)
I think jQ3 update broke imports a bit, so this removes jQuery and also ensures only .etherpad does reload of page.pull/4154/head
parent
27c56109c7
commit
a3386e3e55
|
@ -286,15 +286,6 @@ exports.doImport = function (req, res, padId)
|
|||
}
|
||||
}).then(() => {
|
||||
// close the connection
|
||||
res.send(
|
||||
"<head> \
|
||||
<script type='text/javascript' src='../../static/js/jquery.js'></script> \
|
||||
</head> \
|
||||
<script> \
|
||||
$(window).load(function(){ \
|
||||
var impexp = window.parent.padimpexp.handleFrameCall('" + req.directDatabaseAccess +"', '" + status + "'); \
|
||||
}) \
|
||||
</script>"
|
||||
);
|
||||
res.send("<script>document.addEventListener('DOMContentLoaded', function(){ var impexp = window.parent.padimpexp.handleFrameCall('" + req.directDatabaseAccess +"', '" + status + "'); })</script>");
|
||||
});
|
||||
}
|
||||
|
|
|
@ -244,6 +244,7 @@ var padimpexp = (function()
|
|||
},
|
||||
handleFrameCall: function(directDatabaseAccess, status)
|
||||
{
|
||||
if(directDatabaseAccess === "undefined") directDatabaseAccess = false;
|
||||
if (status !== "ok")
|
||||
{
|
||||
importFailed(status);
|
||||
|
|
Loading…
Reference in New Issue