ソースを参照

only assume svg preview ability in opera, WebKit and Gecko

tags/v0.99.beta17
Ben Wiley Sittler bsittler 16年前
コミット
1e933f8d50
1個のファイルの変更7行の追加2行の削除
  1. +7
    -2
      caca-php/examples/www/export.php

+ 7
- 2
caca-php/examples/www/export.php ファイルの表示

@@ -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
{


読み込み中…
キャンセル
保存