diff options
author | Matt Tyson <mtyson@redhat.com> | 2016-04-26 15:44:07 +0200 |
---|---|---|
committer | Dylan Hardison <dylan@mozilla.com> | 2016-04-26 15:44:07 +0200 |
commit | 8506c4e0760251a4ad21df08d9a853f526df182e (patch) | |
tree | fa184e38070e5542b36ca04995c1fbe4c6fe7165 /js | |
parent | ff441bcc43f86e3fedcecd0b774f171f1c8e61ef (diff) | |
download | bugzilla-8506c4e0760251a4ad21df08d9a853f526df182e.tar.gz bugzilla-8506c4e0760251a4ad21df08d9a853f526df182e.tar.xz |
Bug 1267536 - Javascript errors in advanced search page
r=dylan,a=dylan
Diffstat (limited to 'js')
-rw-r--r-- | js/custom-search.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/js/custom-search.js b/js/custom-search.js index 61284c50d..3cbd246ec 100644 --- a/js/custom-search.js +++ b/js/custom-search.js @@ -41,7 +41,7 @@ function custom_search_new_row() { _remove_any_all(clone); // Always make sure there's only one row with this id. - row.id = null; + row.removeAttribute('id'); row.parentNode.appendChild(clone); cs_reconfigure(row); fix_query_string(row); |