This website works better with JavaScript.
Home
Help
Sign In
cacalabs
/
libcaca
mirror of
https://github.com/cacalabs/libcaca.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
7
Wiki
Activity
Browse Source
only assume svg preview ability in opera, WebKit and Gecko
tags/v0.99.beta17
Ben Wiley Sittler
bsittler
16 years ago
parent
ab44c8daa7
commit
1e933f8d50
1 changed files
with
7 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+7
-2
caca-php/examples/www/export.php
+ 7
- 2
caca-php/examples/www/export.php
View File
@@ -45,9 +45,14 @@ update_preview = function (select)
var iframe_map = {
'html': true,
'html3': true,
'bbfr': true,
'svg': true
'bbfr': true
};
if (self.opera
||
(('' + navigator.userAgent).match(/.*(WebKit|Gecko).*/)))
{
iframe_map['svg'] = true;
}
var e;
try
{
Write
Preview
Loading…
Cancel
Save