Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes typo and broken link in PRIMER. #1274

Merged
merged 1 commit into from
Mar 10, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PRIMER.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ Declarative data binding, events, and property nofication
| [Read-only properties](#read-only) | properties: { \<prop>: { readOnly: true } }
| [Utility functions](#utility-functions) | toggleClass, toggleAttribute, fire, async, …
| [Scoped styling](#scoped-styling) | \<style> in \<dom-module>, Shadow-DOM styling rules (:host, ...)
| [Sharing styles](#shared-styles) | styleModules: [ ... ]
| [Sharing stylesheets](#shared-stylesheets) | styleModules: [ ... ]
| [General polymer settings](#settings) | \<script> Polymer = { ... }; \</script>


Expand Down Expand Up @@ -1206,7 +1206,7 @@ Polymer 0.8 uses "[Shadow DOM styling rules](http://www.html5rocks.com/en/tutori
Note: Remote stylesheets (`<link rel="stylesheet">`) are not currently supported for providing scoped styles. This may be added in future versions. See below for workarounds.

<a name="shared-stylesheets"></a>
### Sharing styesheets
### Sharing stylesheets

Styles can be shared between elements by defining `<dom-module>`'s containing styles to be shared, and referencing shared styles to be included in a given element by listing the `dom-module` id in an array of `styleModules`.

Expand Down