diff --git a/_includes/left-nav.html b/_includes/left-nav.html index 657f52aaa3..d861925071 100644 --- a/_includes/left-nav.html +++ b/_includes/left-nav.html @@ -20,7 +20,8 @@
- Browser requirements: {{site.project_title}} will eventually support all major "evergreen" -(auto-updating) browsers, it currently requires a WebKit-based browser such as Chrome or Safari. -
- ## Bring on the code! You can recursively clone and initialize all of its submodules with a single git command. diff --git a/index.md b/index.md index 73084565eb..1cfd1a1d2e 100644 --- a/index.md +++ b/index.md @@ -41,5 +41,5 @@ Toolkit platform shims the HTML Importsin progress + status: functional code: https://github.com/toolkitchen/ShadowDOM summary: "Shadow DOM is designed to provide encapsulation by hiding DOM subtrees under shadow roots. It provides a method of establishing and maintaining functional boundaries diff --git a/samples/components/tk-binding-to-elements.html b/samples/components/tk-binding-to-elements.html index 4ebbd27a67..64abff2133 100755 --- a/samples/components/tk-binding-to-elements.html +++ b/samples/components/tk-binding-to-elements.html @@ -17,7 +17,7 @@ owner: "Eric", nameChanged: function() { if (this.name) { - // ensure capitilization + // ensure capitalization this.name = this.name[0].toUpperCase() + this.name.slice(1); } }