Skip to content
Snippets Groups Projects
Commit 18b47b1d authored by Dominik Hebeler's avatar Dominik Hebeler
Browse files

removed input focus on result page

parent c5c5c346
No related branches found
No related tags found
2 merge requests!1468Development,!1467Resolve "Avoid more of the Yahoo Filtering"
......@@ -7,30 +7,29 @@ $(document).ready(function () {
// Add entry point for tabbing to the first result
$('.result, .ad').first().attr("id", "results-entry");
// Initially focus the searchbar
$('div.search-input input').focus();
});
/**
* Simulate a click on enter keypress when focused on labels
*/
$('label').on('keydown', function(e) {
if(e.keyCode == '13') {
$('label').on('keydown', function (e) {
if (e.keyCode == '13') {
$(this).click();
$('a', this)
}
});
});
/**
* Handles tab keypress and escape keypress
*/
$(document).on('keydown', function(e) {
$(document).on('keydown', function (e) {
e = e || window.event;
// On first tab keypress there is special behaviour and the ctrlInfo flag is set
if(!ctrlInfo && e.keyCode == '9') {
if (!ctrlInfo && e.keyCode == '9') {
focusNavBox();
e.preventDefault();
ctrlInfo = true;
} else if(e.keyCode == '27') {
} else if (e.keyCode == '27') {
escKeyPressed();
}
});
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment