diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-07-24 09:02:09 +0200 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-07-24 09:02:09 +0200 |
commit | 0ee2db7a68b011af85c6b3ba924ff459e438a16a (patch) | |
tree | 53ce47fa09eb7a3bffa05b928b84ae9499a8aea9 /program/lib | |
parent | b0b9cf00d2d7409569ed27a3388d3b05f2110196 (diff) |
Support allowfullscreen attribute on iframe elements
Diffstat (limited to 'program/lib')
-rw-r--r-- | program/lib/Roundcube/html.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/lib/Roundcube/html.php b/program/lib/Roundcube/html.php index 3aae7cfe7..bcf89d7df 100644 --- a/program/lib/Roundcube/html.php +++ b/program/lib/Roundcube/html.php @@ -218,7 +218,7 @@ class html $attr = array('src' => $attr); } return self::tag('iframe', $attr, $cont, array_merge(self::$common_attrib, - array('src','name','width','height','border','frameborder','onload'))); + array('src','name','width','height','border','frameborder','onload','allowfullscreen'))); } /** |