From 6fc5400f91082c1ae9e85aac71dd547ba85db67c Mon Sep 17 00:00:00 2001 From: Michael Peter Christen Date: Mon, 20 Aug 2012 13:02:29 +0200 Subject: [PATCH] added a tooltip for search navigation to mention that search pages can be navigated using the TAB key --- htroot/js/yacysearch.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/htroot/js/yacysearch.js b/htroot/js/yacysearch.js index 0e71bacf3..df327002f 100644 --- a/htroot/js/yacysearch.js +++ b/htroot/js/yacysearch.js @@ -109,15 +109,15 @@ function statistics(offset, itemscount, itemsperpage, totalcount, localResourceS resnav += (i + 1); resnav += (".gif\" alt=\"page"); resnav += (i + 1); - resnav += ("\" width=\"16\" height=\"16\" /> "); + resnav += ("\" title=\"use the TAB key to navigate to next page\" width=\"16\" height=\"16\" /> "); } } if (thispage >= numberofpages) { - resnav += ("\"arrowright\""); + resnav += ("\"arrowright\""); } else { resnav += ("\"arrowright\""); + resnav += ("\">\"arrowright\""); } document.getElementById("resNav").innerHTML = resnav;