From e86504b200c1cdebecf6a1908d15740ae7c3acba Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 3 Aug 2006 21:20:03 +0000 Subject: [PATCH] I think this was an experiment git-svn-id: svn://svn.open-ils.org/ILS/trunk@5265 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/chrome/content/util/widgets.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/xul/staff_client/chrome/content/util/widgets.js b/Open-ILS/xul/staff_client/chrome/content/util/widgets.js index c4428d398b..82218d055f 100644 --- a/Open-ILS/xul/staff_client/chrome/content/util/widgets.js +++ b/Open-ILS/xul/staff_client/chrome/content/util/widgets.js @@ -164,6 +164,7 @@ util.widgets.remove_children = function() { } util.widgets.disable_accesskeys_in_node_and_children = function( node ) { + return; /* what was I doing here? */ if (node.getAttribute('accesskey')) { node.setAttribute('oldaccesskey', node.getAttribute('accesskey')); node.setAttribute('accesskey',''); node.accessKey = ''; @@ -175,6 +176,7 @@ util.widgets.disable_accesskeys_in_node_and_children = function( node ) { } util.widgets.enable_accesskeys_in_node_and_children = function( node ) { + return; /* what was I doing here? */ if (node.getAttribute('oldaccesskey')) { node.setAttribute('accesskey', node.getAttribute('oldaccesskey')); node.accessKey = node.getAttribute('oldaccesskey'); -- 2.11.0