From: Evan Prodromou Date: Thu, 18 Sep 2008 14:55:45 +0000 (-0400) Subject: get the zeroth form in the returned array X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=935e9b85093a99aa8bd4670fbde4b3cc335d941b;p=quix0rs-gnu-social.git get the zeroth form in the returned array darcs-hash:20080918145545-5ed1f-11100b4bd89ef289f31bbfd37a58c4395469f808.gz --- diff --git a/js/util.js b/js/util.js index 0f2e365c35..9112f2becf 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); }};