diff --git a/app/elements/my-greeting/my-greeting.html b/app/elements/my-greeting/my-greeting.html index 5ccf4bea..d64ba09f 100644 --- a/app/elements/my-greeting/my-greeting.html +++ b/app/elements/my-greeting/my-greeting.html @@ -24,7 +24,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN } -

{{greeting}}

+

{{greeting}}

diff --git a/app/elements/routing.html b/app/elements/routing.html index e3c7a1c0..3939eaba 100644 --- a/app/elements/routing.html +++ b/app/elements/routing.html @@ -33,7 +33,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN } function setFocus(selected){ - document.querySelector('section[data-route="' + selected + '"]').focus(); + document.querySelector('section[data-route="' + selected + '"] .page-title').focus(); } // Routes diff --git a/app/index.html b/app/index.html index 3997b5bf..5af0502e 100644 --- a/app/index.html +++ b/app/index.html @@ -156,7 +156,7 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
-

Users

+

Users

This is the users section

Addy
Rob
@@ -166,15 +166,15 @@ subject to an additional IP rights grant found at http://polymer.github.io/PATEN
- -

User: {{params.name}}

+ +

User: {{params.name}}

This is {{params.name}}'s section
-

Contact

+

Contact

This is the contact section

diff --git a/app/styles/main.css b/app/styles/main.css index 1c9ea799..fbda6d74 100644 --- a/app/styles/main.css +++ b/app/styles/main.css @@ -12,3 +12,7 @@ body { font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif; color: #333; } + +.page-title { + outline: none; +}