fixed to the examples
authorRobin Berjon <robin@berjon.com>
Thu, 21 Jun 2012 11:05:28 +0200
changeset 20 d987d25b7085
parent 19 aecf0c5d5f3a
child 21 4c60426e724b
fixed to the examples
spec/Overview-respec.html
--- a/spec/Overview-respec.html	Thu Jun 21 10:59:09 2012 +0200
+++ b/spec/Overview-respec.html	Thu Jun 21 11:05:28 2012 +0200
@@ -22,6 +22,7 @@
                 company: "Google", companyURL: "http://google.com/" },
           ],
           wg:           ["Device Applications (DAP) Working Group", "Web Applications (WebApps) Working Group"],
+          wgPublicList: "public-web-intents",
           wgURI:        ["http://www.w3.org/2009/dap/", "http://www.w3.org/2008/webapps/"],
           wgPatentURI:  ["http://www.w3.org/2004/01/pp-impl/43696/status", "http://www.w3.org/2004/01/pp-impl/42538/status"]
       };
@@ -39,7 +40,13 @@
       procedures the User Agent carries out to facilitate that process.
       </p>
     </section>
-    
+    <section id='sotd'>
+      <p>
+        This document is produced by a the Web Intents Task Force, which is jointly operated
+        by the DAP and WebApps Working Groups. The email address provided for feedback is
+        that of the Task Force, where all feedback is welcome.
+      </p>
+    </section>
     <section>
       <h2>Introduction</h2>
       <p>
@@ -88,7 +95,7 @@
                                  "type":"image/jpeg",
                                  "data":getImageDataBlob(...)});
         navigator.startActivity(intent, imageEdited);
-      };
+      }, false);
 
       function imageEdited(data) {
         document.getElementById('image').src = data;
@@ -114,7 +121,7 @@
                                  "type":"text/uri-list",
                                  "data":getPublicURIForImage(...)});
         navigator.startActivity(intent);
-      };
+      }, false);
       </pre>
       <p>
       This code delegates sharing functionality to an existing services chosen
@@ -159,11 +166,11 @@
           if (window.intent) {
             setImageContentURI(window.intent.data);
           }
-        };
+        }, false);
 
         document.getElementById('save-button').addEventListener("click", function() {
           window.intent.postResult(getImageDataURI(...));
-        };
+        }, false);
       &lt;/script&gt;
       </pre>
       <p>