From 935e9b85093a99aa8bd4670fbde4b3cc335d941b Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Thu, 18 Sep 2008 10:55:45 -0400 Subject: get the zeroth form in the returned array darcs-hash:20080918145545-5ed1f-11100b4bd89ef289f31bbfd37a58c4395469f808.gz --- js/util.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/util.js b/js/util.js index 0f2e365c3..9112f2bec 100644 --- a/js/util.js +++ b/js/util.js @@ -57,14 +57,14 @@ $(document).ready(function(){ var favoptions = {dataType: 'xml', success: function(xml) { - var new_form = $('form.disfavor', xml); + var new_form = $('form.disfavor', xml).get(0); var id = new_form.id.replace('disfavor', 'favor'); $('form#'+id).replace(new_form); }}; var disoptions = {dataType: 'xml', success: function(xml) { - var new_form = $('form.favor', xml); + var new_form = $('form.favor', xml).get(0); var id = new_form.id.replace('favor', 'disfavor'); $('form#'+id).replace(new_form); }}; -- cgit v1.2.3-54-g00ecf