mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-02-18 03:11:40 +01:00
Fix mail seen label does not work on mobile template
This commit is contained in:
parent
250a605f56
commit
aa00eb9c27
@ -918,8 +918,11 @@ app.classes.mail = AppJS.extend(
|
|||||||
IframeHandle.set_src('about:blank');
|
IframeHandle.set_src('about:blank');
|
||||||
this.mail_disablePreviewArea(true);
|
this.mail_disablePreviewArea(true);
|
||||||
}
|
}
|
||||||
return;
|
if (!egwIsMobile())return;
|
||||||
}
|
}
|
||||||
|
// Not applied to mobile preview
|
||||||
|
if (!egwIsMobile())
|
||||||
|
{
|
||||||
|
|
||||||
// Widget ID:data key map of widgets we can directly set from cached data
|
// Widget ID:data key map of widgets we can directly set from cached data
|
||||||
var data_widgets = {
|
var data_widgets = {
|
||||||
@ -966,6 +969,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
|
|
||||||
// Request email body from server
|
// Request email body from server
|
||||||
IframeHandle.set_src(egw.link('/index.php',{menuaction:'mail.mail_ui.loadEmailBody',_messageID:_id}));
|
IframeHandle.set_src(egw.link('/index.php',{menuaction:'mail.mail_ui.loadEmailBody',_messageID:_id}));
|
||||||
|
}
|
||||||
|
|
||||||
var messages = {};
|
var messages = {};
|
||||||
messages['msg'] = [_id];
|
messages['msg'] = [_id];
|
||||||
|
Loading…
Reference in New Issue
Block a user