changeset 582 | a38876c0793c |
parent 581 | 5e8fd89c02ea |
child 699 | c7d737202d59 |
--- a/includes/clientside/static/autocomplete.js Sun Jun 22 18:13:59 2008 -0400 +++ b/includes/clientside/static/autocomplete.js Tue Jun 24 23:37:23 2008 -0400 @@ -8,21 +8,4 @@ // Replaced with Spry-based mechanism. // -function get_parent_form(o) -{ - if ( !o.parentNode ) - return false; - if ( o.tagName == 'FORM' ) - return o; - var p = o.parentNode; - while(true) - { - if ( p.tagName == 'FORM' ) - return p; - else if ( !p ) - return false; - else - p = p.parentNode; - } -}