diff options
author | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-02-23 16:18:33 +0000 |
---|---|---|
committer | clemenso <clemenso@8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4> | 2011-02-23 16:18:33 +0000 |
commit | 8a3a2759774333469dcc411d0fd5433bbe7c871f (patch) | |
tree | 5c9aa4a151684d74499fad637ed4f8f9d05c9c32 | |
parent | 00e2e53301ceafe825a6b56a4e5818fff91f834e (diff) | |
download | mocca-8a3a2759774333469dcc411d0fd5433bbe7c871f.tar.gz mocca-8a3a2759774333469dcc411d0fd5433bbe7c871f.tar.bz2 mocca-8a3a2759774333469dcc411d0fd5433bbe7c871f.zip |
add help icon onBlur event handler to pass focus to applet
Issue #MOCCA-776 - Applet does not obtain TAB focus
git-svn-id: https://joinup.ec.europa.eu/svn/mocca/trunk@909 8a26b1a7-26f0-462f-b9ef-d0e30c41f5a4
-rw-r--r-- | BKUOnline/src/main/webapp/applet.jsp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BKUOnline/src/main/webapp/applet.jsp b/BKUOnline/src/main/webapp/applet.jsp index 1c2754fb..7fa0e0da 100644 --- a/BKUOnline/src/main/webapp/applet.jsp +++ b/BKUOnline/src/main/webapp/applet.jsp @@ -173,8 +173,8 @@ <a href="#" id="focus" onclick="resize(1.2); return false;" style="float: left;"><img alt="<fmt:message key="incTextSize"/>" src="img/inc.png" id="incButton" class="button"></a> <a href="#" onclick="resize(1/1.2); return false;" style="float: left;"><img alt="<fmt:message key="decTextSize"/>" src="img/dec.png" id="decButton" class="button"></a> </div> - <a href="<c:out value="${helpUrl}"/>" onclick="this.href = document.moccaapplet.getHelpURL(); return true;" target="_new" style="float: right;"><img alt="<fmt:message key="help"/>" src="img/help.png" id="helpButton" class="button"></a> - <div id="message" style="display: none;"> + <a href="<c:out value="${helpUrl}"/>" onclick="this.href = document.moccaapplet.getHelpURL(); return true;" onblur="focusToApplet()" target="_new" style="float: right;"><img alt="<fmt:message key="help"/>" src="img/help.png" id="helpButton" class="button"></a> + <div id="message" style="display: none;"> <p><fmt:message key="javaPluginRequired"/></p> <p style="text-align: right;"> <a style="width: 90%; font-size: 100%" href="http://www.java.com" onclick="deployJava.installLatestJRE(); return false;"><fmt:message key="installJava"/></a> |