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 @@
  • Pointer Events
  • -
  • Tools & Testing
  • +
  • Tools & Testing
  • +
  • Browser Compatibility
  • Changelog
  • diff --git a/compatibility.md b/compatibility.md new file mode 100644 index 0000000000..1e71a5dabd --- /dev/null +++ b/compatibility.md @@ -0,0 +1,10 @@ +--- +layout: default +title: Browser Compatibility +--- + +{{site.project_title}} and its polyfills are intended to work in the _latest +version_ of "evergreen" browsers. The support matrix for each polyfill and their +native browser implementation is below. + + \ No newline at end of file diff --git a/css/site.css b/css/site.css index 90ddb07595..23afcb2fc2 100644 --- a/css/site.css +++ b/css/site.css @@ -25,6 +25,9 @@ code, pre { -o-user-select: none; user-select: none; } +iframe[seamless] { + border: none; +} figcaption { text-align: center; font-style: italic; diff --git a/getting-the-code.md b/getting-the-code.md index cde4d3b566..75345a7e5c 100644 --- a/getting-the-code.md +++ b/getting-the-code.md @@ -3,11 +3,6 @@ layout: default title: Getting the Code --- -

    - 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); } }