Index: chrome/common/extensions/docs/templates/articles/app_lifecycle.html |
diff --git a/chrome/common/extensions/docs/templates/articles/app_lifecycle.html b/chrome/common/extensions/docs/templates/articles/app_lifecycle.html |
index b33a853c82ae2a3e3425c4df519a7fbab9cda36c..136caa4d49d9827e42b464eb15db76d84d998e7c 100644 |
--- a/chrome/common/extensions/docs/templates/articles/app_lifecycle.html |
+++ b/chrome/common/extensions/docs/templates/articles/app_lifecycle.html |
@@ -99,7 +99,7 @@ Windows without IDs will not restore to their size and location after restart. |
<pre data-filename="background.js"> |
chrome.app.runtime.onLaunched.addListener(function() { |
- chrome.app.window.create('main.html', { |
+ chrome.app.window.create('main', { |
mkearney1
2014/04/09 19:43:30
Keep .html as it refers to a filename.
|
id: 'MyWindowID', |
bounds: { |
width: 800, |
@@ -147,9 +147,9 @@ or when it has been updated. |
Any time this function is called, |
the <code>onInstalled</code> event is fired. |
The event page can listen for this event and use the |
-<a href="storage.html">Storage API</a> |
+<a href="storage">Storage API</a> |
to store and update local settings |
-(see also <a href="app_storage.html#options">Storage options</a>). |
+(see also <a href="app_storage#options">Storage options</a>). |
</p> |
<pre data-filename="background.js"> |