Upstream version 5.34.104.0
[platform/framework/web/crosswalk.git] / src / chrome / common / extensions / docs / templates / articles / manifest / file_handlers.html
index e8d3641..3d8a4c9 100644 (file)
@@ -1,7 +1,7 @@
 <h1 id="file_handlers">Manifest - File Handlers</h1>
 
 <p>
-Used by <a href="../apps/app_lifecycle.html#eventpage">packaged apps</a>
+Used by <a href="../app_lifecycle.html#eventpage">packaged apps</a>
 to specify what types of files the app can handle. An app can have multiple <code>file_handlers</code>, with each one having an identifier, a list of MIME types and/or a list of file extensions that can be handled, and
 a title. Here's an example of specifying file handlers:
 </p>
@@ -21,13 +21,13 @@ a title. Here's an example of specifying file handlers:
     ],
     "extensions": [
       "tiff"
-    ]
+    ],
     "title": "Image editor"
   },
   "any": {
     "extensions": [
       "*"
-    ]
+    ],
     "title": "Any file type editor"
   }
 }