2008/04/12

[Google Gears]インストールされているかどうかの確認

GoogleGearsに対応したObjectBrwoserをそろそろ公開しようと思ったので、Google Gears APIで学んだことを書いていきたいと思います。

Google Gearsを使うこと際に重要になってくるのは、ブラウザーがすでにGearsをインストールをしているかどうかです。

サイトを訪問している人が、すでにGearsをインストールをしているかの確認は、Getting Startedを読んでみると、下のソースで確認することができます。

<script src="gears_init.js"></script>
<script>
  if (!window.google || !google.gears) {
    location.href = "http://gears.google.com/?action=install&message=<your welcome message>" + "&return=<your website url>";
  }
</script>

via:Nuts and Bolts: Detecting and Installing Google Gears

<your welcome message>の部分は、任意の文字列を記入し、
<your website url>は、インストールを行った後、リダイレクトするURLを記入します。

もしインストールされていない場合、下のような画面に遷移すると思います。

Gears_NO001

0 コメント:

コメントを投稿