Index: chrome/common/extensions/docs/templates/articles/app_intents.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_intents.html b/chrome/common/extensions/docs/templates/articles/app_intents.html |
index 533fb152e2134ba02d7f53038ab597f8376b4a41..e9390887c068ba5434f4f7a2a6737fa485c3ef83 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_intents.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_intents.html |
@@ -198,7 +198,7 @@ window.navigator.webkitStartActivity(intent, function(data) { |
that something has gone wrong. |
</p> |
-<h3>Client</h3> |
+<h3 id="client">Client</h3> |
<pre> |
var intent = new WebKitIntent("http://webintents.org/edit", "image/png", "dataUri://"); |
@@ -209,7 +209,7 @@ var onError = function() {}; |
window.navigator.webkitStartActivity(intent, onSuccess, onError); |
</pre> |
-<h3>Service</h3> |
+<h3 id="service">Service</h3> |
<pre> |
chrome.app.runtime.onLaunched(function(intent) { |
// App Launched |
@@ -222,4 +222,4 @@ chrome.app.runtime.onLaunched(function(intent) { |
}); |
</pre> |
-<p class="backtotop"><a href="#top">Back to top</a></p> |
+<p class="backtotop"><a href="#top">Back to top</a></p> |