Index: chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html b/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html |
index 3da1ee3c5bd12bc08969cd8aade8ba533062eaee..b02624634cfa10ef6f04b7582a8e69da91f18b20 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_codelab7_useridentification.html |
@@ -1,7 +1,7 @@ |
<h1 id="lab_7_user_identity">Access User's Data</h1> |
<p>Most modern applications are attached to the web to synchronize data. When synchronizing data, you need to identify who the user is. |
-Chrome Apps come with an <a href="experimental.identity.html">identity API</a> that makes it easy to integrate either with Google accounts or with any other service that supports OAuth.</p> |
+Chrome Apps come with an <a href="experimental.identity">identity API</a> that makes it easy to integrate either with Google accounts or with any other service that supports OAuth.</p> |
<ol> |
<li> Built in - Google Authenticiation</li> |
@@ -142,7 +142,7 @@ Should look like this: |
<pre data-filename="controller.js"> |
var clientId = "xxxxxxxxxxxxxx.apps.googleusercontent.com"; |
</pre></p></li> |
-<li><p>Now we just need a button that starts the import process. Update the <code>index.html</code> to include <code>gapi_tasks.js</code> and add a new button to call <code>importFromGTasks</code>: |
+<li><p>Now we just need a button that starts the import process. Update the <code>index</code> to include <code>gapi_tasks.js</code> and add a new button to call <code>importFromGTasks</code>: |
mkearney1
2014/04/09 19:43:29
Keep .html in as it refers to a filename in sample
|
</p> |
<tabs data-group="source"> |
@@ -151,14 +151,14 @@ Should look like this: |
<header tabindex="0" data-value="js">JavaScript</header> |
<content> |
- <pre data-filename="index.html"> |
+ <pre data-filename="index"> |
mkearney1
2014/04/09 19:43:29
Keep .html in as it refers to a filename in sample
|
<script src="gapi_tasks.js"></script> |
... |
<button ng-click="importFromGTasks()">import tasks from GTasks</button> |
</pre> |
</content> |
<content> |
- <pre data-filename="index.html"> |
+ <pre data-filename="index"> |
<button id="importGTasks">import tasks from GTasks</button> |
mkearney1
2014/04/09 19:43:29
Keep .html in as it refers to a filename in sample
|
... |
<script src="gapi_tasks.js"></script> |
@@ -179,11 +179,11 @@ and launch the app from a new tab.</p> |
<h2 id="you_should_also_read">You should also read</h2> |
-<p><a href="app_identity.html">Identify User</a> tutorial</p> |
+<p><a href="app_identity">Identify User</a> tutorial</p> |
<h2 id="what_39_s_next_">What's next?</h2> |
-<p>In <a href="app_codelab8_webresources.html">7 - Access Web Resources</a>, |
+<p>In <a href="app_codelab8_webresources">7 - Access Web Resources</a>, |
you will learn how to load and show images from a remote URL.</p> |
<p class="note"><b>Note:</b> Up until now, the code in each lab builds upon the previous lab code sample. |