mirror of
https://github.com/ether/etherpad-lite.git
synced 2025-05-08 16:05:05 -04:00
better fix for issue #602
This commit is contained in:
parent
a538cf13e7
commit
9815f36a5a
1 changed files with 3 additions and 2 deletions
|
@ -234,9 +234,10 @@ var padeditbar = (function()
|
|||
},
|
||||
setEmbedLinks: function()
|
||||
{
|
||||
var padPath = window.parent ? window.parent.location.href : document.location.href;
|
||||
if ($('#readonlyinput').is(':checked'))
|
||||
{
|
||||
var basePath = top.location.href.substring(0, top.location.href.indexOf("/p/"));
|
||||
var basePath = padPath.substring(0, padPath.indexOf("/p/"));
|
||||
var readonlyLink = basePath + "/ro/" + clientVars.readOnlyId;
|
||||
$('#embedinput').val("<iframe name='embed_readonly' src='" + readonlyLink + "?showControls=true&showChat=true&showLineNumbers=true&useMonospaceFont=false' width=600 height=400>");
|
||||
$('#linkinput').val(readonlyLink);
|
||||
|
@ -244,7 +245,7 @@ var padeditbar = (function()
|
|||
}
|
||||
else
|
||||
{
|
||||
var padurl = top.location.href.split("?")[0];
|
||||
var padurl = padPath.split("?")[0];
|
||||
$('#embedinput').val("<iframe name='embed_readwrite' src='" + padurl + "?showControls=true&showChat=true&showLineNumbers=true&useMonospaceFont=false' width=600 height=400>");
|
||||
$('#linkinput').val(padurl);
|
||||
$('#embedreadonlyqr').attr("src","https://chart.googleapis.com/chart?chs=200x200&cht=qr&chld=|0&chl=" + padurl);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue