From: phasefx Date: Thu, 3 Aug 2006 21:20:03 +0000 (+0000) Subject: I think this was an experiment X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e86504b200c1cdebecf6a1908d15740ae7c3acba;p=evergreen%2Fpines.git I think this was an experiment git-svn-id: svn://svn.open-ils.org/ILS/trunk@5265 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- 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');