mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
Merge pull request #5744 from ErisDS/skip-link
Make skip link work with Ember
This commit is contained in:
commit
459f4afd2a
34
ghost/admin/app/components/gh-skip-link.js
Normal file
34
ghost/admin/app/components/gh-skip-link.js
Normal file
@ -0,0 +1,34 @@
|
||||
/*jshint scripturl:true*/
|
||||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Component.extend({
|
||||
tagName: 'a',
|
||||
anchor: '',
|
||||
classNames: ['sr-only', 'sr-only-focusable'],
|
||||
// Add attributes to component for href
|
||||
// href should be set to retain anchor properties
|
||||
// such as pointer cursor and text underline
|
||||
attributeBindings: ['href'],
|
||||
// Used so that upon clicking on the link
|
||||
// anchor behaviors or ignored
|
||||
href: Ember.String.htmlSafe('javascript:;'),
|
||||
|
||||
scrollTo: function () {
|
||||
var anchor = this.get('anchor'),
|
||||
$el = Ember.$(anchor);
|
||||
|
||||
if ($el) {
|
||||
// Scrolls to the top of main content or whatever
|
||||
// is passed to the anchor attribute
|
||||
Ember.$('body').scrollTop($el.offset().top);
|
||||
|
||||
// This sets focus on the content which was skipped to
|
||||
// upon losing focus, the tabindex should be removed
|
||||
// so that normal keyboard navigation picks up from focused
|
||||
// element
|
||||
Ember.$($el).attr('tabindex', -1).on('blur focusout', function () {
|
||||
$(this).removeAttr('tabindex');
|
||||
}).focus();
|
||||
}
|
||||
}.on('click')
|
||||
});
|
@ -1,5 +1,5 @@
|
||||
{{#gh-app showSettingsMenu=showSettingsMenu}}
|
||||
<a class="sr-only sr-only-focusable" href="#gh-main">Skip to main content</a>
|
||||
{{#gh-skip-link anchor=".gh-main"}}Skip to main content{{/gh-skip-link}}
|
||||
|
||||
{{gh-alerts notify="topNotificationChange"}}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user