mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 04:29:28 +01:00
Fix mail compose gets blank page by clicking on subject field in mobile template
This commit is contained in:
parent
1228270b52
commit
1fb42cb4e9
@ -261,7 +261,13 @@ app.classes.mail = AppJS.extend(
|
|||||||
});
|
});
|
||||||
|
|
||||||
//Resize compose after window resize to not getting scrollbar
|
//Resize compose after window resize to not getting scrollbar
|
||||||
jQuery(window).on ('resize',function() {
|
jQuery(window).on ('resize',function(e) {
|
||||||
|
// Stop immediately the resize event if we are in mobile template
|
||||||
|
if (egwIsMobile())
|
||||||
|
{
|
||||||
|
e.stopImmediatePropagation();
|
||||||
|
return false;
|
||||||
|
}
|
||||||
that.compose_resizeHandler();
|
that.compose_resizeHandler();
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -4091,7 +4097,7 @@ app.classes.mail = AppJS.extend(
|
|||||||
// which is more convenient on small devices. Also resize mailbody with
|
// which is more convenient on small devices. Also resize mailbody with
|
||||||
// ckeditor may causes performance regression, especially on devices with
|
// ckeditor may causes performance regression, especially on devices with
|
||||||
// very limited resources and slow proccessor.
|
// very limited resources and slow proccessor.
|
||||||
if (egwIsMobile()) return;
|
if (egwIsMobile()) return false;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
var bodyH = egw_getWindowInnerHeight();
|
var bodyH = egw_getWindowInnerHeight();
|
||||||
|
Loading…
Reference in New Issue
Block a user