diff options
Diffstat (limited to 'chrome/common/extensions/docs/static/api_other.html')
-rw-r--r-- | chrome/common/extensions/docs/static/api_other.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/extensions/docs/static/api_other.html b/chrome/common/extensions/docs/static/api_other.html index 02f76a0..2904b20 100644 --- a/chrome/common/extensions/docs/static/api_other.html +++ b/chrome/common/extensions/docs/static/api_other.html @@ -18,7 +18,7 @@ you can bundle additional API libraries into your extension. <a href="http://www.w3.org/TR/DOM-Level-2-HTML/">Document Object Model</a> (DOM) APIs that you can use in ordinary web apps. - <span class="comment">[PENDING: check! should link to complete list]</span> + <!-- [PENDING: check! should link to complete list] --> <!-- Use onclick in your toolbar div to add click behavior. E.g. window.open(someUrl). --></dd> <dt><strong> XMLHttpRequest </strong></dt> @@ -44,16 +44,16 @@ E.g. window.open(someUrl). --></dd> } </style> </pre> - <p class="comment">[PENDING: link to complete list of webkit apis]</p> + <!-- [PENDING: link to complete list of webkit apis] --> </dd> <dt><strong> V8 APIs</strong>, such as<strong> JSON </strong></dt> -<dd> Because JSON is in V8, you don't need to include a JSON library to use JSON functions. <span class="comment">[PENDING: what other APIs are in v8? link to complete list]</span></dd> +<dd> Because JSON is in V8, you don't need to include a JSON library to use JSON functions. <!-- [PENDING: what other APIs are in v8? link to complete list] --></dd> <dt> <strong>HTML5</strong> <strong>APIs</strong>, such as <strong>localStorage</strong></dt> <dd> HTML5 is still being defined and implemented, but Google Chrome already supports local storage, which extensions can use to store data. <!-- -localStorage.setItem("foo", "bar"); ... localStorage.getItem("foo"); --> <span class="comment">[PENDING: Other important API? link to complete list]</span></dd> +localStorage.setItem("foo", "bar"); ... localStorage.getItem("foo"); --> <!-- [PENDING: Other important API? link to complete list] --></dd> <dt><strong>APIs in bundled libraries</strong></dt> <dd> If you want to use a library that the browser doesn't provide (for example, jQuery), |