I think this was an experiment
authorphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 3 Aug 2006 21:20:03 +0000 (21:20 +0000)
committerphasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Thu, 3 Aug 2006 21:20:03 +0000 (21:20 +0000)
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

index c4428d3..82218d0 100644 (file)
@@ -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');