Bug #268503 --> space bar focused on blog message does next-unread, not page-down

sr=bienvenu
This commit is contained in:
scott%scott-macgregor.org 2004-11-30 01:27:15 +00:00
Родитель 22d1517984
Коммит db1a381444
2 изменённых файлов: 6 добавлений и 1 удалений

Просмотреть файл

@ -1776,6 +1776,11 @@ function MsgAddAllToAddressBook() {}
function SpaceHit(event)
{
var contentWindow = window.top._content;
var rssiframe = contentWindow.document.getElementById('_mailrssiframe');
// if we are displaying an RSS article, we really want to scroll the nested iframe
if (rssiframe)
contentWindow = rssiframe.contentWindow;
if (event && event.shiftKey) {
// if at the start of the message, go to the previous one

Просмотреть файл

@ -71,7 +71,7 @@ const MESSAGE_TEMPLATE = "\n\
";
const REMOTE_CONTENT_TEMPLATE = "\n\
<iframe src=\"%URL%\">\n\
<iframe id =\"_mailrssiframe\" src=\"%URL%\">\n\
%DESCRIPTION%\n\
</iframe>\n\
";