annotate js/bt/other_libs/excanvas_0002/README @ 47:cbfe386cb51b
Add a function to refresh opened libraries.
The source URL of each libraries is now tracked, which allows for auto
refreshing the libraries based on various events. The obvious use
case is to refresh the library when an atom has been added to Scald,
for example via a Popups dialog.
author |
Franck Deroche <defr@ows.fr> |
date |
Mon, 15 Feb 2010 14:08:04 +0000 |
parents |
0d557e6e73f7 |
children |
|
rev |
line source |
eads@18
|
1 ExplorerCanvas |
eads@18
|
2 Copyright 2006 Google Inc. |
eads@18
|
3 |
eads@18
|
4 ------------------------------------------------------------------------------- |
eads@18
|
5 DESCRIPTION |
eads@18
|
6 |
eads@18
|
7 Firefox, Safari and Opera 9 support the canvas tag to allow 2D command-based |
eads@18
|
8 drawing operations. ExplorerCanvas brings the same functionality to Internet |
eads@18
|
9 Explorer; web developers only need to include a single script tag in their |
eads@18
|
10 existing canvas webpages to enable this support. |
eads@18
|
11 |
eads@18
|
12 |
eads@18
|
13 ------------------------------------------------------------------------------- |
eads@18
|
14 INSTALLATION |
eads@18
|
15 |
eads@18
|
16 Include the ExplorerCanvas tag in the same directory as your HTML files, and |
eads@18
|
17 add the following code to your page, preferably in the <head> tag. |
eads@18
|
18 |
eads@18
|
19 <!--[if IE]><script type="text/javascript" src="excanvas.js"></script><![endif]--> |
eads@18
|
20 |
eads@18
|
21 If you run into trouble, please look at the included example code to see how |
eads@18
|
22 to best implement this |