mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
fixed bug 23133, 23136 - Send Link & Page not escaping page url and not generating href tag; r=ducarroz
This commit is contained in:
parent
454e775f7e
commit
c6627ecb88
@ -1230,14 +1230,18 @@ function BrowserEditBookmarks()
|
||||
|
||||
function BrowserSendLink(pageUrl, pageTitle)
|
||||
{
|
||||
window.openDialog( "chrome://messengercompose/content/", "_blank", "chrome,all,dialog=no",
|
||||
"body=" + pageUrl + ",subject='" + pageTitle + "'");
|
||||
window.openDialog( "chrome://messengercompose/content/", "_blank",
|
||||
"chrome,all,dialog=no",
|
||||
"body='" + pageUrl + "',subject='" + pageTitle +
|
||||
"',bodyislink=true");
|
||||
}
|
||||
|
||||
function BrowserSendPage(pageUrl, pageTitle)
|
||||
{
|
||||
window.openDialog( "chrome://messengercompose/content/", "_blank", "chrome,all,dialog=no",
|
||||
"attachment=" + escape(pageUrl) + ",body=" + pageUrl + ",subject='" + pageTitle + "'");
|
||||
window.openDialog( "chrome://messengercompose/content/", "_blank",
|
||||
"chrome,all,dialog=no",
|
||||
"attachment='" + pageUrl + "',body='" + pageUrl +
|
||||
"',subject='" + pageTitle + "',bodyislink=true");
|
||||
}
|
||||
|
||||
function BrowserViewSource()
|
||||
|
Loading…
Reference in New Issue
Block a user