Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4292)

Unified Diff: chrome/common/extensions/docs/templates/articles/app_intents.html

Issue 10993029: Extensions Docs Server: Fix headings with no IDs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more descriptive ids Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698