diff options
author | Tom Yu <tlyu@mit.edu> | 2013-01-17 22:42:23 -0500 |
---|---|---|
committer | Tom Yu <tlyu@mit.edu> | 2013-01-31 15:10:20 -0500 |
commit | ba8a8a6b25027079ffd3e565a6e6ed450217a024 (patch) | |
tree | 5951ff6632995b6371c57eda2e060bba7f10945e /doc/_templates | |
parent | 95fc179c21cab802469907b2759f0e8bd1cafef1 (diff) | |
download | krb5-ba8a8a6b25027079ffd3e565a6e6ed450217a024.tar.gz krb5-ba8a8a6b25027079ffd3e565a6e6ed450217a024.tar.xz krb5-ba8a8a6b25027079ffd3e565a6e6ed450217a024.zip |
Fix "search" accesskey in layout.html
The accesskey for the "search" link conflicted with the one for the
"contents" link.
ticket: 7559 (new)
target_version: 1.11.1
tags: pullup
Diffstat (limited to 'doc/_templates')
-rw-r--r-- | doc/_templates/layout.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/_templates/layout.html b/doc/_templates/layout.html index 5df82a5bfa..bada10bd57 100644 --- a/doc/_templates/layout.html +++ b/doc/_templates/layout.html @@ -1,5 +1,5 @@ {% extends "!layout.html" %} -{% set rellinks = [('search', 'Enter search criteria', 'C', 'Search')] + +{% set rellinks = [('search', 'Enter search criteria', 'S', 'Search')] + rellinks + [('index', 'Full Table of Contents', 'C', 'Contents')] %} {% set css_files = css_files + ["_static/kerb.css"] %} |