mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-01-31 19:02:59 +01:00
Fixed Wordle Export when using https
This commit is contained in:
parent
6b43d2252b
commit
c06ad49040
1 changed files with 2 additions and 1 deletions
|
@ -291,7 +291,8 @@ var padimpexp = (function()
|
|||
{
|
||||
padUrl = location.pathname;
|
||||
padHost = location.host;
|
||||
var padUrl = "http://" + padHost + padUrl + "/export/txt";
|
||||
padProto = location.protocol;
|
||||
var padUrl = padProto + "//" + padHost + padUrl + "/export/txt";
|
||||
|
||||
$.get(padUrl, function(data)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue