mirror of
https://github.com/EGroupware/egroupware.git
synced 2025-01-03 20:49:04 +01:00
* Filemanager: use bigger popups to open files (PDF: 1024*1024, text: 800*1024, images: 640*800)
This commit is contained in:
parent
40a42ed1c8
commit
a3a63f3586
@ -163,15 +163,15 @@ class Link extends Link\Storage
|
|||||||
// handling of text or pdf files by browser in a popup window
|
// handling of text or pdf files by browser in a popup window
|
||||||
'mime' => array(
|
'mime' => array(
|
||||||
'application/pdf' => array(
|
'application/pdf' => array(
|
||||||
'mime_popup' => '640x480',
|
'mime_popup' => '1024x1024',
|
||||||
'mime_target' => '_blank',
|
'mime_target' => '_blank',
|
||||||
),
|
),
|
||||||
'/^text\\/(plain|html|diff)/' => array( // text/(mimetypes which can be opened as recognised popups)
|
'/^text\\/(plain|html|diff)/' => array( // text/(mimetypes which can be opened as recognised popups)
|
||||||
'mime_popup' => '640x480',
|
'mime_popup' => '800x1024',
|
||||||
'mime_target' => '_blank',
|
'mime_target' => '_blank',
|
||||||
),
|
),
|
||||||
'/^image\\//' => array( // image
|
'/^image\\//' => array( // image
|
||||||
'mime_popup' => '640x480',
|
'mime_popup' => '800x640',
|
||||||
'mime_target' => '_blank',
|
'mime_target' => '_blank',
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
Loading…
Reference in New Issue
Block a user